local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("X Exploits Hub", "DarkTheme") local Main = Window:NewTab("Main") local Player = Window:NewTab("Player") local Scripts = Window:NewTab("Scripts") local MainOptions= Main:NewSection("Main Options") MainOptions:NewTextBox("Print", "Print Anything In The TextBox", function(txt) print(txt) end) MainOptions:NewButton("Executor Level", "The Level Of You Executor", function() printidentity() end) local PlayerOptions= Player:NewSection("Player Options") PlayerOptions:NewSlider("Speed", "Changes Players Speed", 1000, 0, function(v) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end) PlayerOptions:NewSlider("JumpPower", "Changes Players Jump Power", 500, 0, function(v) game.Players.LocalPlayer.Character.Humanoid.JumpPower = v end) local BuiltInScripts= Scripts:NewSection("Built-In Scripts") BuiltInScripts:NewButton("Infinite Yield", "Executes Infinite Yield", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) BuiltInScripts:NewButton("Dex Explorer", "Executes Dex Explorer", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/MassiveHubs/loadstring/main/DexXenoAndRezware"))() end) BuiltInScripts:NewButton("UNC Test", "Executes UNC Test", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/unified-naming-convention/NamingStandard/refs/heads/main/UNCCheckEnv.lua"))() end) BuiltInScripts:NewButton("sUNC Test", "Executes sUNC Test", function() loadstring(game:HttpGet("https://gitlab.com/sens3/nebunu/-/raw/main/HummingBird8's_sUNC_yes_i_moved_to_gitlab_because_my_github_acc_got_brickedd/sUNCm0m3n7.lua"))() end)