Advertisement
rienoh

Leaderstats Script

Jun 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. game.Players.PlayersAdded:Connect(function(player)
  2. local leaderstats = Instance.new("Folder")
  3. leaderstats.Name = "leaderstats"
  4. leaderstats.Parent = player
  5.  
  6. local money = Instance.new("IntValue")
  7. money.Name = "Money"
  8. money.Value = 0
  9. money.Parent = leaderstats
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement