Advertisement
Guest User

Untitled

a guest
Jun 4th, 2020
1,835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. -- Created by SpeedSterMaster --
  2. -- Check me out on YouTube: SpeedSterMaster --
  3. -- Script came From Roblox Studio --
  4. -- June 4, 2020 --
  5. -- Is it Always Dark in Games? --
  6. -- Today we are creating a Cash per Second Script --
  7. -- Feel Free to Cuztomize the Script and it Works for Any Game with currencies --
  8. -- here is the Script: This is mainly used for roblox exploits like jjsploit and synapse X
  9. game.Players.PlayerAdded:connect(function(p)
  10. local stats = Instance.new("IntValue", p)
  11. stats.Name = "leaderstats"
  12. local money = Instance.new("IntValue", stats)
  13. money.Name = "Cash" -- Currency Name
  14. money.Value = 100
  15. while true do
  16. wait(5) -- Seconds until you get cash.
  17. money.Value = money.Value + 10 -- How Much Cash you Get
  18. end
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement