HowToRoblox

MoneyScript

Oct 26th, 2019
3,313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. game.Players.PlayerAdded:Connect(function(Player)
  2.    
  3.     local Stats = Instance.new("Folder")
  4.     Stats.Name = "leaderstats"
  5.     Stats.Parent = Player
  6.    
  7.     local Money = Instance.new("IntValue")
  8.     Money.Name = "Money"
  9.     Money.Parent = Stats
  10.     Money.Value = 0
  11. end)
Add Comment
Please, Sign In to add comment