Advertisement
Guest User

(Roblox) Ninja Legends Auto Swing, Auto Rank, etc.

a guest
Feb 5th, 2020
7,663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. --Auto Swing
  2. _G.swing = true
  3. while _G.swing do
  4. wait()
  5. game.Players.LocalPlayer.ninjaEvent:FireServer("swingKatana")
  6. end
  7.  
  8. --Auto buy sword
  9. _G.sword = true
  10. while _G.sword do
  11. wait()
  12. --This script was generated by Hydroxide
  13. local oh1 = "buyAllSwords"
  14. local oh2 = {"Ground", "Astral Island", "Dragon Legend Island"}
  15. for i = 1, #oh2 do
  16. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  17. end
  18. end
  19.  
  20. --Auto buy belt
  21. _G.sword = true
  22. while _G.sword do
  23. wait()
  24. --This script was generated by Hydroxide
  25. local oh1 = "buyAllBelts"
  26. local oh2 = {"Ground", "Astral Island", "Golden Master Island"}
  27. for i = 1, #oh2 do
  28. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  29. end
  30. end
  31.  
  32. --Auto buy skill
  33. _G.sword = true
  34. while _G.sword do
  35. wait()
  36. --This script was generated by Hydroxide
  37. local oh1 = "buyAllSkills"
  38. local oh2 = {"Ground", "Astral Island", "Dragon Legend Island"}
  39. for i = 1, #oh2 do
  40. game:GetService("Players").LocalPlayer.ninjaEvent:FireServer(oh1, oh2[i])
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement