Advertisement
ProScripter29

Universal Exploit

May 5th, 2023 (edited)
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.24 KB | Gaming | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. local Window = Library:NewWindow("Exploit")
  4.  
  5. local Main = Window:NewSection("Main")
  6.  
  7. local Players = game:GetService("Players")
  8. local LocalPlayer = Players.LocalPlayer
  9.  
  10. local UserInputService = game:GetService("UserInputService")
  11.  
  12. local speed = 16;
  13. local jumppower = 50;
  14. LocalPlayer.Character.Humanoid.WalkSpeed = 99
  15. getgenv().infinitejump = true;
  16.  
  17. Main:CreateToggle("Infinite Jumps", function(value)
  18.     getgenv().infinitejump = value
  19. end)
  20.  
  21. Main:CreateTextbox("Speed", function(value)
  22.     speed = value
  23. end)
  24.  
  25. Main:CreateTextbox("Jump Power", function(value)
  26.     jumppower = value
  27. end)
  28.  
  29. function characterUpdate()
  30.     while task.wait() do
  31.         if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then
  32.             LocalPlayer.Character.Humanoid.WalkSpeed = speed
  33.             LocalPlayer.Character.Humanoid.UseJumpPower = true
  34.             LocalPlayer.Character.Humanoid.JumpPower = jumppower
  35.         end
  36.     end
  37. end
  38.  
  39. function infiniteJumps()
  40.     UserInputService.JumpRequest:Connect(function()
  41.         if infinitejump == true then
  42.             LocalPlayer.Character.Humanoid:ChangeState("Jumping")
  43.         end
  44.     end)
  45. end
  46.  
  47. characterUpdate()
  48. infiniteJumps()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement