local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))() local Window = Library.CreateLib("mx hub v1.0", "RJTheme3") local Tab = Window:NewTab("mods") local Section = Tab:NewSection("guns") Section:NewButton("gun mods", "ButtonInfo", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Aimbot-Arena-BETA-OP-Gun-Mods-31904"))() end) local Tab = Window:NewTab("player") local Section = Tab:NewSection("idk") Section:NewButton("bunnyhop(gui)", "ButtonInfo", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Auto-Jump-32448"))() end) Section:NewButton("change speed(removed after die)", "ButtonInfo", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Cframe-Speed-33508"))() end) Section:NewButton("noclip(button)", "ButtonInfo", function() getgenv().Players = game:GetService'Players' getgenv().Host = Players.LocalPlayer getgenv().AddNotification = function(title, text) game:GetService'StarterGui':SetCore("SendNotification", {Title = title; Text = text;}) end getgenv().RunService = game:GetService'RunService'; getgenv().ContextActionService = game:GetService'ContextActionService'; local Noclip = true; local NoclipKey = 'X'; -- Change your key here RunService.RenderStepped:Connect(function() if Noclip then for _,v in pairs(Host.Character:GetDescendants()) do if v:IsA'BasePart' and v.CanCollide then v.CanCollide = false end end else for _,v in pairs(Host.Character:GetDescendants()) do if v:IsA'BasePart' and not v.CanCollide then v.CanCollide = true end end end end) function Noclipping(ActionName:string, Properties:EnumItem) if ActionName == 'Noclip' then if not Properties or Properties == Enum.UserInputState.Begin then Noclip = not Noclip AddNotification('Noclip','Noclip is now - '..tostring(Noclip)) end end end ContextActionService:BindAction('Noclip', Noclipping, true, Enum.KeyCode[NoclipKey]) end) local Tab = Window:NewTab("credits(my user") local Section = Tab:NewSection("creator:nikita_4245 display::MX_explojter")