local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Universal Basic Walkspeed And JumpPower", "Synapse") --LocalPlayer local LocalPlayer = Window:NewTab("LocalPlayer") local LocalPlayerSection = LocalPlayer:NewSection("Basic Walkspeed And Jump Power Modification") --creates a title in the tab LocalPlayerSection:NewSlider("Walkspeed", "Changes How Fast You Walk", 250, 16, function(v) -- 250 (MaxValue) | 16 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end) LocalPlayerSection:NewSlider("JumpPower", "Changes How High You Can Jump", 250, 50, function(v) -- 250 (MaxValue) | 50 (MinValue) game.Players.LocalPlayer.Character.Humanoid.JumpPower = v end) LocalPlayerSection:NewToggle("Noclip", "Let,s You Walk Trough Walls", function(state) if state then noclip = true else noclip = false end end) --credit local credit = Window:NewTab("Credit") local creditSection = credit:NewSection("no credit lol") --creates a title in the tab -- noclip variables noclip = false game:GetService('RunService').Stepped:Connect(function() if noclip then game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) end end)