-- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/IreXion-UI-Library/main/IreXion%20UI%20Library"))() local Gui = Library:AddGui({ Title = {"Arutus X", "Arsenal"}, ThemeColor = Color3.fromRGB(0, 255, 0), ToggleKey = Enum.KeyCode.RightShift, }) local Tab = Gui:AddTab("Arsenal") local Category = Tab:AddCategory("Arsenal") local function addButton(name, scriptUrl) Category:AddButton(name, function() loadstring(game:HttpGet(scriptUrl))() end) end addButton("AimBot", "https://raw.githubusercontent.com/Exunys/Aimbot-Script/main/Aimbot%20Script%20(Without%20FOV).lua") addButton("Inf Ammo", "https://raw.githubusercontent.com/5carr3d/esp/main/main.lua") addButton("Esp/Tracers", "https://raw.githubusercontent.com/MisterGunXD/yes/main/rolve%3C3.lua") addButton("Kill All", "https://raw.githubusercontent.com/MisterGunXD/yes/main/rolve%3C3.lua") addButton("Rapid Fire", "https://raw.githubusercontent.com/5carr3d/esp/main/main.lua") addButton("Auto Win", "https://raw.githubusercontent.com/your-auto-win-script-url.lua") addButton("Fly", "https://raw.githubusercontent.com/your-fly-script-url.lua") addButton("Knife Aura", "https://raw.githubusercontent.com/your-knife-aura-script-url.lua") local Bind = Category:AddBind("RightShift", Gui.ToggleKey, function() print("Toggled GUI") end) Library:Notify("Did You Enjoy It?", function(bool) print("User clicked", bool and "yes" or "no") end)