Advertisement
Guest User

Untitled

a guest
May 25th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. local loopTimes = 500000 --Set this number to how many times you want this to loop through setting it to 500000 is pretty much infinite would last for 1,500,000 seconds which is equivalent to 416 hours
  2. for i = 1,loopTimes do
  3. local multiplier = 1 -- Set this to your multiplier (1 = no ninjutsu boost 2 = 2x ninjutsu boost and 4 = 4x ninjutsu boost) You must have it purchased for this to work that being said if you don't have 2x activated and you set multiplier to 2 this won't work due to anti-exploit
  4. if(multiplier == 1) then
  5. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 8)
  6. wait(1)
  7. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 9)
  8. wait(1)
  9. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 10)
  10. wait(1)
  11. elseif(multiplier == 2) then
  12. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 18)
  13. wait(1)
  14. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 19)
  15. wait(1)
  16. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 20)
  17. wait(1)
  18. elseif(multiplier == 4) then
  19. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 38)
  20. wait(1)
  21. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 39)
  22. wait(1)
  23. game.ReplicatedStorage.RemoteEvent.AddPowerEvent:FireServer("FromTraining", 40)
  24. wait(1)
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement