Advertisement
LemonJuicer

*UPDATE* *BEACH* ROBLOX SCRIPT Every Second You Get +1 Jump Power

Dec 25th, 2022 (edited)
1,804
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 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("Henkie Frenkie YT +1 Jump Power", "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", "+1250 Wins every 9 seconds (rejoin to stop)", function()
  26. while true do
  27. local x = 51225
  28. local y = 163356
  29. local z = 385
  30. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(x, y, z))
  31. wait(9)
  32. end
  33. end)
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement