BiggerHeadBigHead

How To Get Money Per Time (ROBLOX)

Feb 27th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(p)
  2. local stats = Instance.new("IntValue", p)
  3. stats.Name = "leaderstats"
  4. local money = Instance.new("IntValue", stats)
  5. money.Name = "Money"
  6. money.Value = 0
  7. while true do
  8. wait(5)
  9. money.Value = money.Value + 10
  10. end
  11. end)
  12.  
  13.  
  14.  
  15. --Enjoy:D By Robrac2
Add Comment
Please, Sign In to add comment