Advertisement
Dogmen

NinjaBox

Nov 1st, 2020
1,484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.92 KB | None | 0 0
  1.  
  2. local NinjaBox = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local nigga = Instance.new("TextLabel")
  5. local swing = Instance.new("TextButton")
  6. local sell = Instance.new("TextButton")
  7. local coins = Instance.new("TextButton")
  8. local jump = Instance.new("TextButton")
  9. local hoops = Instance.new("TextButton")
  10. local chi = Instance.new("TextButton")
  11.  
  12. NinjaBox.Name = "NinjaBox"
  13. NinjaBox.Parent = game.CoreGui
  14. NinjaBox.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = NinjaBox
  17. Frame.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  18. Frame.BorderSizePixel = 4
  19. Frame.Position = UDim2.new(0.470705718, 0, 0.32435596, 0)
  20. Frame.Size = UDim2.new(0, 287, 0, 241)
  21. Frame.Active = true
  22. Frame.Selectable = true
  23. Frame.Draggable = true
  24.  
  25. nigga.Name = "nigga"
  26. nigga.Parent = Frame
  27. nigga.BackgroundColor3 = Color3.new(1, 1, 1)
  28. nigga.BackgroundTransparency = 1
  29. nigga.Size = UDim2.new(0, 287, 0, 24)
  30. nigga.Font = Enum.Font.Roboto
  31. nigga.Text = "NinjaBox by Mad?#7374"
  32. nigga.TextColor3 = Color3.new(1, 1, 1)
  33. nigga.TextScaled = true
  34. nigga.TextSize = 14
  35. nigga.TextWrapped = true
  36.  
  37. swing.Name = "swing"
  38. swing.Parent = Frame
  39. swing.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  40. swing.BorderSizePixel = 3
  41. swing.Position = UDim2.new(0.0766550526, 0, 0.174865067, 0)
  42. swing.Size = UDim2.new(0, 243, 0, 25)
  43. swing.Font = Enum.Font.Roboto
  44. swing.Text = "Auto Swing [OFF]"
  45. swing.TextColor3 = Color3.new(1, 1, 1)
  46. swing.TextScaled = true
  47. swing.TextSize = 14
  48. swing.TextWrapped = true
  49.  
  50. local gay = false
  51. swing.MouseButton1Click:connect(function()
  52.     if gay then gay = false swing.Text = "Auto Swing [OFF]" else gay = true swing.Text = "Auto Swing [ON]" end
  53.  
  54.     local A_1 = "swingKatana"
  55.     local Event = game:GetService("Players").LocalPlayer.ninjaEvent
  56.  
  57.     while gay do
  58.         Event:FireServer(A_1)
  59.         wait()
  60.     end
  61. end)
  62.  
  63. sell.Name = "sell"
  64. sell.Parent = Frame
  65. sell.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  66. sell.BorderSizePixel = 3
  67. sell.Position = UDim2.new(0.0766550526, 0, 0.3381688, 0)
  68. sell.Size = UDim2.new(0, 243, 0, 25)
  69. sell.Font = Enum.Font.Roboto
  70. sell.Text = "Auto Sell [OFF]"
  71. sell.TextColor3 = Color3.new(1, 1, 1)
  72. sell.TextScaled = true
  73. sell.TextSize = 14
  74. sell.TextWrapped = true
  75.  
  76. local lgbt = false
  77. sell.MouseButton1Click:connect(function()
  78.     if lgbt then lgbt = false sell.Text = "Auto Sell [OFF]" else lgbt = true sell.Text = "Auto Sell [ON]" end
  79.  
  80.     local cir = game:GetService("Workspace").sellAreaCircles["sellAreaCircle16"].circleInner
  81.     local plr = game.Players.LocalPlayer
  82.     while wait() do
  83.         cir.CFrame = plr.Character.HumanoidRootPart.CFrame + Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  84.     end
  85. end)
  86.  
  87. coins.Name = "coins"
  88. coins.Parent = Frame
  89. coins.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  90. coins.BorderSizePixel = 3
  91. coins.Position = UDim2.new(0.0766550526, 0, 0.497694612, 0)
  92. coins.Size = UDim2.new(0, 243, 0, 25)
  93. coins.Font = Enum.Font.Roboto
  94. coins.Text = "Auto Collect Coins [OFF]"
  95. coins.TextColor3 = Color3.new(1, 1, 1)
  96. coins.TextScaled = true
  97. coins.TextSize = 14
  98. coins.TextWrapped = true
  99.  
  100. local Gaming_NWord = false
  101.  
  102. local plr = game.Players.LocalPlayer
  103.  
  104. local function Collect()
  105.     for i, v in pairs(game:GetService("Workspace").spawnedCoins.Valley:GetChildren()) do
  106.         if v:FindFirstChild("collected") then game.Workspace.Gravity = 196.2  continue end
  107.         game.Workspace.Gravity = 0
  108.         plr.Character.HumanoidRootPart.CFrame = v.CFrame
  109.     end
  110. end
  111.  
  112. coins.MouseButton1Click:connect(function()
  113.     if Gaming_NWord then Gaming_NWord = false coins.Text = "Auto Collect Coins [OFF]" else Gaming_NWord = true coins.Text = "Auto Collect Coins [ON]" end
  114.  
  115.     while Gaming_NWord do
  116.         Collect()
  117.         wait()
  118.     end
  119. end)
  120.  
  121.  
  122. jump.Name = "jump"
  123. jump.Parent = Frame
  124. jump.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  125. jump.BorderSizePixel = 3
  126. jump.Position = UDim2.new(0, 0, 0.904702544, 0)
  127. jump.Size = UDim2.new(0, 287, 0, 25)
  128. jump.Font = Enum.Font.Roboto
  129. jump.Text = "No Jump Limit"
  130. jump.TextColor3 = Color3.new(1, 1, 1)
  131. jump.TextScaled = true
  132. jump.TextSize = 14
  133. jump.TextWrapped = true
  134.  
  135. jump.MouseButton1Click:connect(function()
  136.     game:GetService("Players").fanpl.multiJumpCount.Value = 69420 -- haha funny
  137. end)
  138.  
  139.  
  140. chi.Name = "chi"
  141. chi.Parent = Frame
  142. chi.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  143. chi.BorderSizePixel = 0
  144. chi.Position = UDim2.new(0.449477345, 0, 0.788151026, 0)
  145. chi.Size = UDim2.new(0, 136, 0, 19)
  146. chi.Font = Enum.Font.Roboto
  147. chi.Text = "Only Chi [OFF]"
  148. chi.TextColor3 = Color3.new(1, 1, 1)
  149. chi.TextScaled = true
  150. chi.TextSize = 14
  151. chi.TextWrapped = true
  152.  
  153. local gas_shower = false
  154.  
  155. chi.MouseButton1Click:connect(function()
  156.     if gas_shower then gas_shower = false chi.Text = "Only Chi [OFF]" else gas_shower = true chi.Text = "Only Chi [ON]" end
  157. end)
  158.  
  159.  
  160.  
  161. hoops.Name = "hoops"
  162. hoops.Parent = Frame
  163. hoops.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  164. hoops.BorderSizePixel = 3
  165. hoops.Position = UDim2.new(0.0766550526, 0, 0.659520328, 0)
  166. hoops.Size = UDim2.new(0, 243, 0, 25)
  167. hoops.Font = Enum.Font.Roboto
  168. hoops.Text = "Auto Collect Hoops  [OFF]"
  169. hoops.TextColor3 = Color3.new(1, 1, 1)
  170. hoops.TextScaled = true
  171. hoops.TextSize = 14
  172. hoops.TextWrapped = true
  173. local naziParty = false
  174. hoops.MouseButton1Click:connect(function()
  175.     if naziParty  then naziParty = false hoops.Text = "Auto Collect Hoops [OFF]" else naziParty = true hoops.Text = "Auto Collect Hoops [ON]" end
  176.  
  177.     while naziParty do
  178.         for i, v in pairs(game:GetService("Workspace").Hoops:GetChildren()) do
  179.             if v:FindFirstChild("coolingDown") then  game.Workspace.Gravity = 196.2 continue end
  180.  
  181.             game.Workspace.Gravity = 0
  182.  
  183.             if gas_shower then
  184.                 if v:FindFirstChild("chi") then
  185.                     plr.Character.HumanoidRootPart.CFrame = v.touchPart.CFrame
  186.                 end
  187.             else
  188.                 plr.Character.HumanoidRootPart.CFrame = v.touchPart.CFrame
  189.             end
  190.         end
  191.         wait()
  192.     end
  193. end)
  194.  
  195. error("If you read this you gay lmfaoooo")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement