Advertisement
AmplySK

Ninja Legends 2 script

Apr 19th, 2022
994
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Ninja Legends 2", "BloodTheme")
  3.  
  4. --Main
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Farm")
  7.  
  8. MainSection:NewToggle("AutoSwing", "Makes player auto swing", function(v)
  9. getgenv().autoswing = v
  10. while true do
  11. if not getgenv().autoswing then return end
  12. for _,v in pairs(game.Players.LocalPlayer.Backpack:getChildren()) do
  13. if v:FindFirstChild("elementGain") then
  14. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  15. break
  16. end
  17. end
  18. local A_1 = "swingBlade"
  19. local Event = game:GetService("Players").LocalPlayer.saberEvent
  20. Event:FireServer(A_1)
  21. wait(0.25)
  22. end
  23. end)
  24.  
  25. MainSection:NewToggle("Auto Sell :HELP AT -------------------------->", "First equip 'AutoSwing' and 'Unlock all islands'", function(v)
  26. getgenv().autosell = v
  27. while true do
  28. if getgenv().autoswing == false then return end
  29. game:GetService("Workspace").sellAreaCircles["sellAreaCircle"].circleInner.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  30. wait(0.1)
  31. game:GetService("Workspace").sellAreaCircles["sellAreaCircle"].circleInner.CFrame = CFrame.new(0,0,0)
  32. wait(0.1)
  33. end
  34. end)
  35.  
  36. MainSection:NewButton("Unlock all islands", "you will unlock all islands", function()
  37. local oldcframe = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  38. for _,v in pairs(game:GetService("Workspace").areaTeleportParts:GetChildren()) do
  39. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  40. wait(0.1)
  41. end
  42. wait(0.1)
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = oldcframe
  44. end)
  45.  
  46. MainSection:NewButton("Last Island", "you will be teleported to last islend", function()
  47. for _,v in pairs(game:GetService("Workspace").areaTeleportParts:GetChildren()) do
  48. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  49. wait(0)
  50. end
  51. end)
  52.  
  53. MainSection:NewToggle("Buy all swords", "Will buy you all awable swords", function(v)
  54. getgenv().buyswords = v
  55. while true do
  56. if not getgenv().buyswords then return end
  57. local A_1 = "buyAllItems"
  58. local A_2 =
  59. {
  60. ["whichItems"] = "Swords",
  61. ["whichPlanet"] = "Planet Chaos"
  62. }
  63. local Event = game:GetService("Players").LocalPlayer.saberEvent
  64. Event:FireServer(A_1, A_2)
  65. wait(0.5)
  66. end
  67. end)
  68. MainSection:NewToggle("Buy all belts", "Will buy you all awable belts", function(v)
  69. getgenv().buycristals = v
  70. while true do
  71. if not getgenv().buycristals then return end
  72. local A_1 = "buyAllItems"
  73. local A_2 =
  74. {
  75. ["whichItems"] = "Crystals",
  76. ["whichPlanet"] = "Planet Chaos"
  77. }
  78. local Event = game:GetService("Players").LocalPlayer.saberEvent
  79. Event:FireServer(A_1, A_2)
  80. wait(0.5)
  81. end
  82. end)
  83.  
  84. MainSection:NewToggle("Buy all Skills", "Will buy you all awable Skills", function(v)
  85. getgenv().buyskills = v
  86. while true do
  87. if not getgenv().buyskills then return end
  88. local A_1 = "buyAllItems"
  89. local A_2 =
  90. {
  91. ["whichItems"] = "Skills",
  92. ["whichPlanet"] = "Planet Chaos"
  93. }
  94. local Event = game:GetService("Players").LocalPlayer.saberEvent
  95. Event:FireServer(A_1, A_2)
  96. wait(0.5)
  97. end
  98. end)
  99.  
  100.  
  101. --Player
  102. local Player = Window:NewTab("Player")
  103. local PlayerSection = Player:NewSection("Player")
  104.  
  105. PlayerSection:NewSlider("Speed", "Makes you faster", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  106. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  107. end)
  108. PlayerSection:NewSlider("Jump", "Makes you jump higher", 500, 50, function(s)
  109. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  110. end)
  111.  
  112. --Rank
  113. local Rank = Window:NewTab("Rank")
  114. local RankSection = Rank:NewSection("Rank")
  115.  
  116. RankSection:NewToggle("Buy all ranks --not working rn", "Will buy you all awable ranks", function(v)
  117. getgenv().buyrank1 = v
  118. while true do
  119. if not getgenv().buyrank1 then return end
  120. local A_1 = "buyRank"
  121. local A_2 = (v)
  122. local Event = game:GetService("Players").LocalPlayer.ninjaEvent
  123. Event:FireServer(A_1, A_2)
  124. wait(0.5)
  125. end
  126. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement