Advertisement
Guest User

Be a ninja parkour script OVERPOWERED

a guest
Jan 3rd, 2023
2,541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  2.  
  3. local w = library:CreateWindow("Be a Parkour ninja script") -- Creates the window
  4.  
  5. local b = w:CreateFolder("Main") -- Creates the folder(U will put here your buttons,etc)
  6.  
  7. b:Label("↓Op script↓",{
  8. TextSize = 25; -- Self Explaining
  9. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  10. Self Explaining
  11.  
  12. })
  13.  
  14. b:Button("hit box",function()
  15. _G.HeadSize = 30
  16. _G.Disabled = true
  17.  
  18. game:GetService('RunService').RenderStepped:connect(function()
  19. if _G.Disabled then
  20. for i,v in next, game:GetService('Players'):GetPlayers() do
  21. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  22. pcall(function()
  23. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  24. v.Character.HumanoidRootPart.Transparency = 0.7
  25. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  26. v.Character.HumanoidRootPart.Material = "Neon"
  27. v.Character.HumanoidRootPart.CanCollide = false
  28. end)
  29. end
  30. end
  31. end
  32. end)
  33. end)
  34.  
  35. b:Button("auto kill(op) ",function()
  36. Loading(game:HttpGet("https://pastebin.com/raw/kYf28cR2"))();
  37. end)
  38.  
  39. b:Button("inf jump",function()
  40. --Subscribe To Spooky Dragon--
  41.  
  42. local InfiniteJumpEnabled = true
  43. game:GetService("UserInputService").JumpRequest:connect(function()
  44. if InfiniteJumpEnabled then
  45. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  46. end
  47. end)
  48. end)
  49.  
  50. local b = w:CreateFolder("other") -- Creates the folder(U will put here your buttons,etc)
  51.  
  52. b:DestroyGui()
  53.  
  54. b:Slider("Slider",{
  55. min = 16; -- min value of the slider
  56. max = 100; -- max value of the slider
  57. precise = true; -- max 2 decimals
  58. },function(value)
  59. print(value)
  60. end)
  61.  
  62. local b = w:CreateFolder("Credit") -- Creates the folder(U will put here your buttons,etc)
  63.  
  64. b:Label("Made by xuserplays in yt",{
  65. TextSize = 25; -- Self Explaining
  66. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  67. BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  68.  
  69. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement