Advertisement
teamkel01

Ninja legends 2

Mar 21st, 2023 (edited)
870
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.63 KB | None | 1 0
  1. --credits to teamkel01
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4. local Window = OrionLib:MakeWindow({Name = "Ninja Legends 2", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  5. local Tab = Window:MakeTab({
  6. Name = "Main",
  7. Icon = "rbxassetid://4483345998",
  8. PremiumOnly = false
  9. })
  10. Tab:AddToggle({
  11. Name = "Auto swing",
  12. Default = false,
  13. Callback = function(Value)
  14. getgenv().loop1 = Value
  15. while getgenv().loop1 == true do
  16. wait(0.1)
  17. local args = {
  18. [1] = "swingBlade"
  19. }
  20.  
  21. game:GetService("Players").LocalPlayer.saberEvent:FireServer(unpack(args))
  22. end
  23. end
  24. })
  25. Tab:AddToggle({
  26. Name = "Auto sell",
  27. Default = false,
  28. Callback = function(Value)
  29. getgenv().loop2 = Value
  30. while getgenv().loop2 == true do
  31. wait(0.1)
  32. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-89, 112, 131)
  33. wait(0.1)
  34. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1, 113, 157)
  35. end
  36. end
  37. })
  38. Tab:AddButton({
  39. Name = "Unlock all islands",
  40. Callback = function()
  41. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1, 1467, 142)
  42. wait(0.1)
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1, 3057, 142)
  44. wait(0.1)
  45. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1, 4681, 142)
  46. wait(0.1)
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(63, 6311, 101)
  48. wait(0.1)
  49. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1, 8631, 142)
  50. end
  51. })
  52. local Tab = Window:MakeTab({
  53. Name = "Training areas",
  54. Icon = "rbxassetid://4483345998",
  55. PremiumOnly = false
  56. })
  57. Tab:AddToggle({
  58. Name = "Auto sell ancient masters blade",
  59. Default = false,
  60. Callback = function(Value)
  61. getgenv().loop5 = Value
  62. while getgenv().loop5 == true do
  63. wait(1)
  64. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-89, 112, 131)
  65. wait()
  66. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-254, 117, 355)
  67. end
  68. end
  69. })
  70. Tab:AddToggle({
  71. Name = "Auto sell soul fusions arena",
  72. Default = false,
  73. Callback = function(Value)
  74. getgenv().loop6 = Value
  75. while getgenv().loop6 == true do
  76. wait(1)
  77. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-89, 112, 131)
  78. wait()
  79. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(324, 123, -196)
  80. end
  81. end
  82. })
  83. Tab:AddToggle({
  84. Name = "Auto sell crashed spaceships",
  85. Default = false,
  86. Callback = function(Value)
  87. getgenv().loop7 = Value
  88. while getgenv().loop7 == true do
  89. wait(1)
  90. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-89, 112, 131)
  91. wait()
  92. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-191, 124, -147)
  93. end
  94. end
  95. })
  96.  
  97.  
  98.  
  99. local Tab = Window:MakeTab({
  100. Name = "Chests",
  101. Icon = "rbxassetid://4483345998",
  102. PremiumOnly = false
  103. })
  104. Tab:AddButton({
  105. Name = "Get all Chests",
  106. Callback = function()
  107. local args = {
  108. [1] = "Group Rewards Chest"
  109. }
  110.  
  111. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  112. wait()
  113. local args = {
  114. [1] = "Daily Rewards Chest"
  115. }
  116.  
  117. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  118. wait()
  119. local args = {
  120. [1] = "Cybernetic Chest"
  121. }
  122.  
  123. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  124. wait()
  125. local args = {
  126. [1] = "Chaos Origins Chest"
  127. }
  128.  
  129. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  130. wait()
  131. local args = {
  132. [1] = "Rising Eternity Chest"
  133. }
  134.  
  135. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  136. wait()
  137. local args = {
  138. [1] = "Divine Destiny Chest"
  139. }
  140.  
  141. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  142. wait()
  143. local args = {
  144. [1] = "Dark Nebula Chest"
  145. }
  146.  
  147. game:GetService("ReplicatedStorage").rEvents.checkChestRemote:InvokeServer(unpack(args))
  148. end
  149. })
  150. Tab:AddButton({
  151. Name = "Spin the wheel",
  152. Callback = function()
  153. local args = {
  154. [1] = "openFortuneWheel",
  155. [2] = workspace.FortuneWheels:FindFirstChild("Fortune Wheel")
  156. }
  157.  
  158. game:GetService("ReplicatedStorage").rEvents.openFortuneWheelRemote:InvokeServer(unpack(args))
  159. end
  160. })
  161.  
  162.  
  163. local Tab = Window:MakeTab({
  164. Name = "Auto buy",
  165. Icon = "rbxassetid://4483345998",
  166. PremiumOnly = false
  167. })
  168. Tab:AddToggle({
  169. Name = "Autobuy swords",
  170. Default = false,
  171. Callback = function(Value)
  172. getgenv().loop3 = Value
  173. while getgenv().loop3 == true do
  174. wait(0.1)
  175. local args = {
  176. [1] = "buyAllItems",
  177. [2] = {
  178. ["whichItems"] = "Swords",
  179. ["whichPlanet"] = "Planet Chaos"
  180. }
  181. }
  182.  
  183. game:GetService("Players").LocalPlayer.saberEvent:FireServer(unpack(args))
  184. end
  185. end
  186. })
  187. Tab:AddToggle({
  188. Name = "Autobuy crystals",
  189. Default = false,
  190. Callback = function(Value)
  191. getgenv().loop4 = Value
  192. while getgenv().loop4 == true do
  193. wait(0.1)
  194. local args = {
  195. [1] = "buyAllItems",
  196. [2] = {
  197. ["whichItems"] = "Crystals",
  198. ["whichPlanet"] = "Planet Chaos"
  199. }
  200. }
  201.  
  202. game:GetService("Players").LocalPlayer.saberEvent:FireServer(unpack(args))
  203. end
  204. end
  205. })
  206.  
  207.  
  208.  
  209. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement