RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me leaderstats with the name "Coins""
-- server script game.Players.PlayerAdded:Connect(function(Player) local leaderstats = Instance.new("Folder") leaderstats.Name = "leaderstats" leaderstats.Parent = Player local coins = Instance.new("IntValue") coins.Name = "Coins" coins.Value = 0 coins.Parent = leaderstats end)