Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Leaderstats für Coins hinzufügen
- 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 -- Startwert
- coins.Parent = leaderstats
- end)
- --Scripted by 1MinuteRobloxTutorials
Advertisement
Add Comment
Please, Sign In to add comment