Configuration des leaderstats Roblox

local function onPlayerJoin(player)
	local leaderstats = Instance.new("Folder")
	leaderstats.Name = "leaderstats"
	leaderstats.Parent = player
 
	local gold = Instance.new("IntValue")
	gold.Name = "Gold"
 
end
Old-fashioned Ostrich