WeDoScripts

Insane Instant money any game

Feb 16th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. ---hey guys this script allows you to get money
  2. ---every 5 seconds but yeah this script only works on
  3. ----games that have money/ that you can get money on
  4. -----and it dont work if the thing is not titled as money
  5. ----so like jailbreak mad city and more...
  6.  
  7. function onPlayerEntered(newPlayer)
  8.  
  9. local leaderstats = Instance.new("IntValue")
  10. leaderstats.Name = "leaderstats"
  11.  
  12. local cash = Instance.new("IntValue")
  13. cash.Name = "Money"
  14. cash.Value = 1000000
  15.  
  16. cash.Parent = leaderstats
  17. leaderstats.Parent = newPlayer
  18.  
  19. while true do
  20. wait(5)
  21. cash.Value = cash.Value + 100000
  22. end
  23. end
  24.  
  25. game.Players.PlayerAdded:connect(onPlayerEntered)
Add Comment
Please, Sign In to add comment