local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib(game.Players.LocalPlayer.Name .. "'s Hub", "Synapse") local Mod = Window:NewTab("Player Modifications") local Section1 = Mod:NewSection("Simple") Section1:NewSlider("Speed", "Changes your walkspeed", 1000, 0, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) Section1:NewSlider("Jump", "Changes your jumppower", 1000, 0, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) Section1:NewSlider("Gravity", "Changes your Gravity", 1000, 0, function(s) -- 500 (MaxValue) | 0 (MinValue) workspace.Gravity = s end) Section1:NewButton("Reset Gravity", "Reset Gravity in the Workspace", function() workspace.Gravity = 196.2 end) Section1:NewButton("Reset Jump", "Reset JumpPower to the Humanoid of " .. game.Players.LocalPlayer.Name, function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end) Section1:NewButton("Reset Speed", "Reset WalkSpeed to the Humanoid of " .. game.Players.LocalPlayer.Name, function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 end) Section1:NewSlider("Spin Speed", "Adjust rotation speed", 50, 0, function(s) spinSpeed = s end) spawn(function() while task.wait(0.01) do -- Faster updates for smoother rotation local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame *= CFrame.Angles(0, math.rad((spinSpeed or 0) * 0.1), 0) end end end) Section1:NewButton("Fly Gui", "Runs the fly gui loadstring i mean buddy there is no point in checking here", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))() end) local Con = Window:NewTab("Configs") local Section2 = Con:NewSection("Configurations") Section2:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.T, function() Library:ToggleUI() end) Section2:NewLabel("Hello " .. game.Players.LocalPlayer.Name) Section2:NewLabel("Press the X button " .. game.Players.LocalPlayer.Name .. " if you wanna unload" )