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("Sripts", "Ocean")
- local Tab = Window:NewTab("Player")
- local Section = Tab:NewSection("Player")
- Section:NewSlider("Speed", "Speed", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewSlider("JumpPower", "JumpPower", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- Section:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function()
- Library:ToggleUI()
- end)
- local Tab = Window:NewTab("UnfairHub")
- local Section = Tab:NewSection("UnfairHub")
- Section:NewButton("UnfairHub", "UnfairHub", function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/rblxscriptsnet/unfair/main/rblxhub.lua'),true))()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement