1MinuteRoblox

leaderstats

Apr 21st, 2025
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. -- Leaderstats für Coins hinzufügen
  2. game.Players.PlayerAdded:Connect(function(player)
  3. local leaderstats = Instance.new("Folder")
  4. leaderstats.Name = "leaderstats"
  5. leaderstats.Parent = player
  6.  
  7. local coins = Instance.new("IntValue")
  8. coins.Name = "Coins"
  9. coins.Value = 0 -- Startwert
  10. coins.Parent = leaderstats
  11. end)
  12. --Scripted by 1MinuteRobloxTutorials
Advertisement
Add Comment
Please, Sign In to add comment