LemonJuicer

+1 Jump Every Second Script

Dec 31st, 2022
1,196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 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("LemonQuice +1 Health Hub", "Ocean")
  3.  
  4. -- Player
  5. local Player = Window:NewTab("Player")
  6. local PlayerSection = Player:NewSection("Player")
  7.  
  8. PlayerSection:NewButton("Admin Commands", "Infinite Yield", function()
  9. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  10. end)
  11.  
  12. PlayerSection:NewSlider("Walk Speed", "Go Fast", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  13. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  14. end)
  15.  
  16.  
  17. PlayerSection:NewSlider("Jump Power", "Go High", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  18. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  19. end)
  20. -- AUTO FARM
  21. local Farm = Window:NewTab("Auto Farm")
  22. local FarmSection = Farm:NewSection("Auto Farm")
  23.  
  24.  
  25. FarmSection:NewButton("Infinite Wins", "+12 Wins every 3 seconds (rejoin to stop)", function()
  26. while true do
  27. local x = 1212
  28. local y = 123467
  29. local z = 8270
  30. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(x, y, z))
  31. wait(3)
  32. end
  33. end)
  34.  
Advertisement
Add Comment
Please, Sign In to add comment