Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Henkie Frenkie YT +1 Jump Power", "Ocean")
- -- Player
- local Player = Window:NewTab("Player")
- local PlayerSection = Player:NewSection("Player")
- PlayerSection:NewButton("Admin Commands", "Infinite Yield", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- PlayerSection:NewSlider("Walk Speed", "Go Fast", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- PlayerSection:NewSlider("Jump Power", "Go High", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- -- AUTO FARM
- local Farm = Window:NewTab("Auto Farm")
- local FarmSection = Farm:NewSection("Auto Farm")
- FarmSection:NewButton("Infinite Wins", "+1250 Wins every 9 seconds (rejoin to stop)", function()
- while true do
- local x = 51225
- local y = 163356
- local z = 385
- game.Players.LocalPlayer.Character:MoveTo(Vector3.new(x, y, z))
- wait(9)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement