Advertisement
xmaanzach

leaderstats(Cash)

Apr 18th, 2018
1,385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(plr)
  2. local folder = Instance.new("Folder", plr)
  3. folder.Name = "leaderstats"
  4.  
  5. local cash = Instance.new("IntValue", folder)
  6. cash.Name = "Cash"
  7. cash.Value = 0
  8. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement