Advertisement
HowToRoblox

CashHandler

Sep 21st, 2020
2,621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(plr)
  2.  
  3.     local ls = Instance.new("Folder")
  4.     ls.Name = "leaderstats"
  5.     ls.Parent = plr
  6.  
  7.     local cash = Instance.new("IntValue")
  8.     cash.Name = "Cash"
  9.     cash.Parent = ls   
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement