local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() —- Setup local Window = Library.CreateLib("TITLE HERE", "DarkTheme") —- Tabs local Tab = Window:NewTab("TAB NAME HERE") —- Sections local Section = Tab:NewSection("SECTION NAME HERE") Section:NewSlider("Walk-speed", "Zoom!", 125, 0, function(Value) game:GetService("Players").LocalPlayer.Walkspeed = Value end) Section:NewSlider("Jump-power", "Hi- bye…", 125, 0, function(Value) game:GetService("Players").LocalPlayer.JumpPower = Value end)