local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Admin GUI", "DarkTheme") local Tab = Window:NewTab("Admin Controls") local Section = Tab:NewSection("Control Actions") -- Kill All Button Section:NewButton("Kill All Players", "Kills everyone in the server", function() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Name ~= game.Players.LocalPlayer.Name then player.Character:FindFirstChild("Humanoid").Health = 0 end end end) -- Fly Button Section:NewButton("Fly Me", "Fly around", function() local player = game.Players.LocalPlayer local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then -- Fly code will be added here (example logic, needs adjustment) print(player.Name.." is now flying!") end end end) -- Invisibility Button Section:NewButton("Become Invisible", "Make yourself invisible", function() local character = game.Players.LocalPlayer.Character if character then character.HumanoidRootPart.Transparency = 1 for _, part in pairs(character:GetChildren()) do if part:IsA("BasePart") then part.Transparency = 1 end end end end)