-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --[[\ ╔══════════════════════════════════════════════════════════════════════════╗ ║ KARLO SCRIPT // ULTIMATE HYBRID HUB ║ ║ Keyless, Modern English UI Layout, Keybind Manager & RGB ║ ╚══════════════════════════════════════════════════════════════════════════╝ ]]-- local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local SoundService = game:GetService("SoundService") local Workspace = game:GetService("Workspace") local Lighting = game:GetService("Lighting") local TeleportService = game:GetService("TeleportService") local LocalPlayer = Players.LocalPlayer local Camera = Workspace.CurrentCamera if CoreGui:FindFirstChild("KarLoScriptHub") then CoreGui.KarLoScriptHub:Destroy() end -- ========================================================================= -- MAIN GUI & KEYBIND SETUP (DEFAULT: INSERT) -- ========================================================================= local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "KarLoScriptHub" ScreenGui.Parent = CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.Enabled = true local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 22) MainFrame.BackgroundTransparency = 0.05 MainFrame.BorderSizePixel = 0 MainFrame.Position = UDim2.new(0.5, -340, 0.5, -235) MainFrame.Size = UDim2.new(0, 680, 0, 470) MainFrame.Active = true MainFrame.Draggable = true local MainStroke = Instance.new("UIStroke") MainStroke.Parent = MainFrame MainStroke.Thickness = 1.5 -- RGB Border Flow task.spawn(function() local hue = 0 while MainFrame and MainFrame.Parent do hue = (hue + 1) % 360 MainStroke.Color = Color3.fromHSV(hue / 360, 0.8, 1) task.wait(0.03) end end) local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 8) MainCorner.Parent = MainFrame -- Top Navigation Bar (Modern Client Style) local TopBar = Instance.new("Frame") TopBar.Name = "TopBar" TopBar.Parent = MainFrame TopBar.BackgroundColor3 = Color3.fromRGB(24, 24, 30) TopBar.BackgroundTransparency = 0.1 TopBar.BorderSizePixel = 0 TopBar.Size = UDim2.new(1, 0, 0, 45) local TopBarCorner = Instance.new("UICorner") TopBarCorner.CornerRadius = UDim.new(0, 8) TopBarCorner.Parent = TopBar local TopBarCover = Instance.new("Frame") TopBarCover.BackgroundColor3 = Color3.fromRGB(24, 24, 30) TopBarCover.BackgroundTransparency = 0.1 TopBarCover.BorderSizePixel = 0 TopBarCover.Position = UDim2.new(0, 0, 0.8, 0) TopBarCover.Size = UDim2.new(1, 0, 0.2, 0) TopBarCover.Parent = TopBar local BrandLogo = Instance.new("TextLabel") BrandLogo.Parent = TopBar BrandLogo.BackgroundTransparency = 1 BrandLogo.Position = UDim2.new(0, 16, 0, 0) BrandLogo.Size = UDim2.new(0, 120, 1, 0) BrandLogo.Font = Enum.Font.GothamBold BrandLogo.Text = "KarLo Script" BrandLogo.TextColor3 = Color3.fromRGB(255, 255, 255) BrandLogo.TextSize = 14 BrandLogo.TextXAlignment = Enum.TextXAlignment.Left -- Logo RGB Glow task.spawn(function() local hue = 0 while BrandLogo and BrandLogo.Parent do hue = (hue + 1) % 360 BrandLogo.TextColor3 = Color3.fromHSV(hue / 360, 1, 1) task.wait(0.03) end end) -- Keybind Manager Button local ToggleKey = Enum.KeyCode.Insert local BindingMode = false local KeybindBtn = Instance.new("TextButton") KeybindBtn.Parent = TopBar KeybindBtn.BackgroundColor3 = Color3.fromRGB(32, 32, 42) KeybindBtn.Position = UDim2.new(1, -165, 0.5, -14) KeybindBtn.Size = UDim2.new(0, 150, 0, 28) KeybindBtn.Font = Enum.Font.GothamSemibold KeybindBtn.Text = "Key: INSERT (Change)" KeybindBtn.TextColor3 = Color3.fromRGB(180, 180, 180) KeybindBtn.TextSize = 10 local KeybindCorner = Instance.new("UICorner") KeybindCorner.CornerRadius = UDim.new(0, 6) KeybindCorner.Parent = KeybindBtn KeybindBtn.MouseButton1Click:Connect(function() BindingMode = true KeybindBtn.Text = "Press any key..." KeybindBtn.TextColor3 = Color3.fromRGB(255, 100, 100) end) UserInputService.InputBegan:Connect(function(input, gameProcessed) if BindingMode then if input.UserInputType == Enum.UserInputType.Keyboard then ToggleKey = input.KeyCode KeybindBtn.Text = "Key: " .. input.KeyCode.Name .. " (Change)" KeybindBtn.TextColor3 = Color3.fromRGB(180, 180, 180) BindingMode = false end else if not gameProcessed and input.KeyCode == ToggleKey and ScreenGui.Enabled then MainFrame.Visible = not MainFrame.Visible end end end) -- Left Sidebar (Navigation Panel) local Sidebar = Instance.new("ScrollingFrame") Sidebar.Name = "Sidebar" Sidebar.Parent = MainFrame Sidebar.Active = true Sidebar.BackgroundColor3 = Color3.fromRGB(20, 20, 26) Sidebar.BackgroundTransparency = 0.3 Sidebar.BorderSizePixel = 0 Sidebar.Position = UDim2.new(0, 12, 0, 56) Sidebar.Size = UDim2.new(0, 160, 0, 402) Sidebar.CanvasSize = UDim2.new(0, 0, 0, 0) Sidebar.ScrollBarThickness = 2 local SidebarCorner = Instance.new("UICorner") SidebarCorner.CornerRadius = UDim.new(0, 6) SidebarCorner.Parent = Sidebar local SidebarLayout = Instance.new("UIListLayout") SidebarLayout.Parent = Sidebar SidebarLayout.SortOrder = Enum.SortOrder.LayoutOrder SidebarLayout.Padding = UDim.new(0, 4) local SidebarPadding = Instance.new("UIPadding") SidebarPadding.Parent = Sidebar SidebarPadding.PaddingTop = UDim.new(0, 6) SidebarPadding.PaddingLeft = UDim.new(0, 6) SidebarPadding.PaddingRight = UDim.new(0, 6) -- Pages Container (Right Side Panel) local PagesFolder = Instance.new("Folder") PagesFolder.Name = "PagesFolder" PagesFolder.Parent = MainFrame local function CreatePage(name) local Page = Instance.new("ScrollingFrame") Page.Name = name .. "Page" Page.Parent = PagesFolder Page.Active = true Page.BackgroundTransparency = 1 Page.BorderSizePixel = 0 Page.Position = UDim2.new(0, 184, 0, 56) Page.Size = UDim2.new(0, 482, 0, 402) Page.CanvasSize = UDim2.new(0, 0, 0, 2600) Page.ScrollBarThickness = 3 Page.Visible = false local PageLayout = Instance.new("UIListLayout") PageLayout.Parent = Page PageLayout.SortOrder = Enum.SortOrder.LayoutOrder PageLayout.Padding = UDim.new(0, 8) return Page end local HomeMasterPage = CreatePage("HomeMaster") local CombatPage = CreatePage("Combat") local MovementPage = CreatePage("Movement") local VisualsPage = CreatePage("Visuals") local WorldPage = CreatePage("World") local CustomPage = CreatePage("Custom") local FunPage = CreatePage("Fun") local MusicPage = CreatePage("Music") local TeleportPage = CreatePage("Teleport") local SettingsPage = CreatePage("Settings") HomeMasterPage.Visible = true local function CreateTabButton(name, targetPage) local Btn = Instance.new("TextButton") Btn.Parent = Sidebar Btn.BackgroundColor3 = Color3.fromRGB(26, 26, 34) Btn.BackgroundTransparency = 0.4 Btn.BorderSizePixel = 0 Btn.Size = UDim2.new(1, 0, 0, 36) Btn.AutoButtonColor = false Btn.Font = Enum.Font.GothamSemibold Btn.Text = " " .. name Btn.TextColor3 = Color3.fromRGB(170, 170, 170) Btn.TextSize = 11 Btn.TextXAlignment = Enum.TextXAlignment.Left local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 5) Corner.Parent = Btn Btn.MouseButton1Click:Connect(function() for _, p in pairs(PagesFolder:GetChildren()) do p.Visible = false end for _, b in pairs(Sidebar:GetChildren()) do if b:IsA("TextButton") then b.TextColor3 = Color3.fromRGB(170, 170, 170) b.BackgroundColor3 = Color3.fromRGB(26, 26, 34) end end targetPage.Visible = true Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Btn.BackgroundColor3 = Color3.fromRGB(45, 45, 65) end) end CreateTabButton("Home", HomeMasterPage) CreateTabButton("Combat & Aimbot", CombatPage) CreateTabButton("Movement / Fly", MovementPage) CreateTabButton("Visuals & ESP", VisualsPage) CreateTabButton("World & FPS", WorldPage) CreateTabButton("Cosmetics & Skin", CustomPage) CreateTabButton("Fun & Troll", FunPage) CreateTabButton("Music Player", MusicPage) CreateTabButton("Teleport Hub", TeleportPage) CreateTabButton("Settings", SettingsPage) -- ========================================================================= -- UI COMPONENTS (Toggles, Sliders, Buttons) -- ========================================================================= local function AddToggle(parent, text, callback) local ToggleFrame = Instance.new("Frame") ToggleFrame.Parent = parent ToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 22, 28) ToggleFrame.BackgroundTransparency = 0.2 ToggleFrame.Size = UDim2.new(1, -10, 0, 38) ToggleFrame.BorderSizePixel = 0 local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 6) Corner.Parent = ToggleFrame local Label = Instance.new("TextLabel") Label.Parent = ToggleFrame Label.BackgroundTransparency = 1 Label.Position = UDim2.new(0, 14, 0, 0) Label.Size = UDim2.new(0, 360, 1, 0) Label.Font = Enum.Font.GothamSemibold Label.Text = text Label.TextColor3 = Color3.fromRGB(230, 230, 230) Label.TextSize = 11 Label.TextXAlignment = Enum.TextXAlignment.Left local Switch = Instance.new("TextButton") Switch.Parent = ToggleFrame Switch.BackgroundColor3 = Color3.fromRGB(35, 35, 48) Switch.Position = UDim2.new(1, -44, 0.5, -10) Switch.Size = UDim2.new(0, 34, 0, 20) Switch.AutoButtonColor = false Switch.Text = "" local SwitchCorner = Instance.new("UICorner") SwitchCorner.CornerRadius = UDim.new(1, 0) SwitchCorner.Parent = Switch local Indicator = Instance.new("Frame") Indicator.Parent = Switch Indicator.BackgroundColor3 = Color3.fromRGB(160, 160, 160) Indicator.Position = UDim2.new(0, 2, 0.5, -8) Indicator.Size = UDim2.new(0, 16, 0, 16) local IndicatorCorner = Instance.new("UICorner") IndicatorCorner.CornerRadius = UDim.new(1, 0) IndicatorCorner.Parent = Indicator local enabled = false Switch.MouseButton1Click:Connect(function() enabled = not enabled if enabled then Switch.BackgroundColor3 = Color3.fromRGB(60, 200, 110) Indicator.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Indicator:TweenPosition(UDim2.new(1, -18, 0.5, -8), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.15, true) else Switch.BackgroundColor3 = Color3.fromRGB(35, 35, 48) Indicator.BackgroundColor3 = Color3.fromRGB(160, 160, 160) Indicator:TweenPosition(UDim2.new(0, 2, 0.5, -8), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, 0.15, true) end callback(enabled) end) end local function AddSlider(parent, text, min, max, default, callback) local SliderFrame = Instance.new("Frame") SliderFrame.Parent = parent SliderFrame.BackgroundColor3 = Color3.fromRGB(22, 22, 28) SliderFrame.BackgroundTransparency = 0.2 SliderFrame.Size = UDim2.new(1, -10, 0, 52) SliderFrame.BorderSizePixel = 0 local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 6) Corner.Parent = SliderFrame local Label = Instance.new("TextLabel") Label.Parent = SliderFrame Label.BackgroundTransparency = 1 Label.Position = UDim2.new(0, 14, 0, 4) Label.Size = UDim2.new(0, 320, 0, 20) Label.Font = Enum.Font.GothamSemibold Label.Text = text Label.TextColor3 = Color3.fromRGB(230, 230, 230) Label.TextSize = 11 Label.TextXAlignment = Enum.TextXAlignment.Left local ValueLabel = Instance.new("TextLabel") ValueLabel.Parent = SliderFrame ValueLabel.BackgroundTransparency = 1 ValueLabel.Position = UDim2.new(1, -110, 0, 4) ValueLabel.Size = UDim2.new(0, 96, 0, 20) ValueLabel.Font = Enum.Font.GothamBold ValueLabel.Text = tostring(default) ValueLabel.TextColor3 = Color3.fromRGB(100, 180, 255) ValueLabel.TextSize = 11 ValueLabel.TextXAlignment = Enum.TextXAlignment.Right local SliderBar = Instance.new("Frame") SliderBar.Parent = SliderFrame SliderBar.BackgroundColor3 = Color3.fromRGB(35, 35, 48) SliderBar.Position = UDim2.new(0, 14, 0, 32) SliderBar.Size = UDim2.new(1, -28, 0, 6) SliderBar.BorderSizePixel = 0 local BarCorner = Instance.new("UICorner") BarCorner.CornerRadius = UDim.new(1, 0) BarCorner.Parent = SliderBar local Fill = Instance.new("Frame") Fill.Parent = SliderBar Fill.BackgroundColor3 = Color3.fromRGB(100, 180, 255) Fill.Size = UDim2.new((default - min) / (max - min), 0, 1, 0) Fill.BorderSizePixel = 0 local FillCorner = Instance.new("UICorner") FillCorner.CornerRadius = UDim.new(1, 0) FillCorner.Parent = Fill local dragging = false local function updateInput(input) local pos = math.clamp((input.Position.X - SliderBar.AbsolutePosition.X) / SliderBar.AbsoluteSize.X, 0, 1) local val = math.floor(min + ((max - min) * pos)) Fill.Size = UDim2.new(pos, 0, 1, 0) ValueLabel.Text = tostring(val) callback(val) end SliderBar.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true updateInput(input) end end) UserInputService.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then updateInput(input) end end) UserInputService.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end) end local function AddButton(parent, text, callback) local Btn = Instance.new("TextButton") Btn.Parent = parent Btn.BackgroundColor3 = Color3.fromRGB(22, 22, 28) Btn.BackgroundTransparency = 0.2 Btn.Size = UDim2.new(1, -10, 0, 38) Btn.BorderSizePixel = 0 Btn.Font = Enum.Font.GothamSemibold Btn.Text = text Btn.TextColor3 = Color3.fromRGB(230, 230, 230) Btn.TextSize = 11 local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0, 6) Corner.Parent = Btn Btn.MouseButton1Click:Connect(callback) end -- ========================================================================= -- 0. HOME PANEL (Overview & Status Dashboard) -- ========================================================================= local HomeTitle = Instance.new("TextLabel") HomeTitle.Parent = HomeMasterPage HomeTitle.BackgroundTransparency = 1 HomeTitle.Size = UDim2.new(1, 0, 0, 28) HomeTitle.Font = Enum.Font.GothamBold HomeTitle.Text = "Overview & License Dashboard" HomeTitle.TextColor3 = Color3.fromRGB(255, 255, 255) HomeTitle.TextSize = 14 HomeTitle.TextXAlignment = Enum.TextXAlignment.Left local LicenseCard = Instance.new("Frame") LicenseCard.Parent = HomeMasterPage LicenseCard.BackgroundColor3 = Color3.fromRGB(22, 22, 28) LicenseCard.BackgroundTransparency = 0.2 LicenseCard.Size = UDim2.new(1, -10, 0, 90) LicenseCard.BorderSizePixel = 0 local LicenseCorner = Instance.new("UICorner") LicenseCorner.CornerRadius = UDim.new(0, 6) LicenseCorner.Parent = LicenseCard local LicTitle = Instance.new("TextLabel") LicTitle.Parent = LicenseCard LicTitle.BackgroundTransparency = 1 LicTitle.Position = UDim2.new(0, 14, 0, 10) LicTitle.Size = UDim2.new(1, -28, 0, 20) LicTitle.Font = Enum.Font.GothamBold LicTitle.Text = "License: Premium Ultimate Access" LicTitle.TextColor3 = Color3.fromRGB(100, 220, 140) LicTitle.TextSize = 12 LicTitle.TextXAlignment = Enum.TextXAlignment.Left local StatusTxt = Instance.new("TextLabel") StatusTxt.Parent = LicenseCard StatusTxt.BackgroundTransparency = 1 StatusTxt.Position = UDim2.new(0, 14, 0, 36) StatusTxt.Size = UDim2.new(1, -28, 0, 20) StatusTxt.Font = Enum.Font.GothamSemibold StatusTxt.Text = "Status: Active & Verified" StatusTxt.TextColor3 = Color3.fromRGB(200, 200, 200) StatusTxt.TextSize = 11 StatusTxt.TextXAlignment = Enum.TextXAlignment.Left local ExpiresTxt = Instance.new("TextLabel") ExpiresTxt.Parent = LicenseCard ExpiresTxt.BackgroundTransparency = 1 ExpiresTxt.Position = UDim2.new(0, 14, 0, 58) ExpiresTxt.Size = UDim2.new(1, -28, 0, 20) ExpiresTxt.Font = Enum.Font.GothamSemibold ExpiresTxt.Text = "Expires: Lifetime Unlimited" ExpiresTxt.TextColor3 = Color3.fromRGB(200, 200, 200) ExpiresTxt.TextSize = 11 ExpiresTxt.TextXAlignment = Enum.TextXAlignment.Left local NewsTitle = Instance.new("TextLabel") NewsTitle.Parent = HomeMasterPage NewsTitle.BackgroundTransparency = 1 NewsTitle.Size = UDim2.new(1, 0, 0, 32) NewsTitle.Font = Enum.Font.GothamBold NewsTitle.Text = "What's New (v2.6.0)" NewsTitle.TextColor3 = Color3.fromRGB(255, 255, 255) NewsTitle.TextSize = 13 NewsTitle.TextXAlignment = Enum.TextXAlignment.Left local NewsCard = Instance.new("Frame") NewsCard.Parent = HomeMasterPage NewsCard.BackgroundColor3 = Color3.fromRGB(22, 22, 28) NewsCard.BackgroundTransparency = 0.2 NewsCard.Size = UDim2.new(1, -10, 0, 110) NewsCard.BorderSizePixel = 0 local NewsCorner = Instance.new("UICorner") NewsCorner.CornerRadius = UDim.new(0, 6) NewsCorner.Parent = NewsCard local NewsBody = Instance.new("TextLabel") NewsBody.Parent = NewsCard NewsBody.BackgroundTransparency = 1 NewsBody.Position = UDim2.new(0, 14, 0, 10) NewsBody.Size = UDim2.new(1, -28, 1, -20) NewsBody.Font = Enum.Font.Gotham NewsBody.Text = "• Added 150+ advanced hybrid script features.\n• Fully optimized English UI with modern client layout.\n• Enhanced Keybind Manager & RGB Dynamic styling.\n• 100% secure memory execution & stability fixes." NewsBody.TextColor3 = Color3.fromRGB(190, 190, 190) NewsBody.TextSize = 11 NewsBody.TextXAlignment = Enum.TextXAlignment.Left NewsBody.TextYAlignment = Enum.TextYAlignment.Top -- ========================================================================= -- 1. COMBAT & AIMBOT (1-20 Features) -- ========================================================================= local AimbotEnabled = false local AimbotSmoothness = 5 local TargetPartName = "Head" local ShowFOV = false local FOVRadius = 120 local WallCheck = false local TriggerBotEnabled = false local SilentAimEnabled = false local AutoShoot = false local TargetTeamCheck = false local HitboxExpander = false local HitboxSize = 2 AddToggle(CombatPage, "1. Advanced Aimbot (Auto Lock)", function(state) AimbotEnabled = state end) AddSlider(CombatPage, "2. Aimbot Smoothness", 1, 20, 5, function(val) AimbotSmoothness = val end) AddSlider(CombatPage, "3. Field of View (FOV)", 50, 400, 120, function(val) FOVRadius = val end) AddToggle(CombatPage, "4. Show FOV Circle", function(state) ShowFOV = state end) AddToggle(CombatPage, "5. Wall Check (Visibility)", function(state) WallCheck = state end) AddToggle(CombatPage, "6. TriggerBot (Auto Fire)", function(state) TriggerBotEnabled = state end) AddToggle(CombatPage, "7. Silent Aim (Bullet Redirect)", function(state) SilentAimEnabled = state end) AddToggle(CombatPage, "8. Auto-Shoot Target", function(state) AutoShoot = state end) AddToggle(CombatPage, "9. Team Check (Ignore Allies)", function(state) TargetTeamCheck = state end) AddToggle(CombatPage, "10. Hitbox Expander", function(state) HitboxExpander = state end) AddSlider(CombatPage, "11. Hitbox Scale Multiplier", 2, 10, 2, function(val) HitboxSize = val end) AddToggle(CombatPage, "12. Head Priority Lock", function(state) TargetPartName = state and "Head" or "HumanoidRootPart" end) AddToggle(CombatPage, "13. Recoil Reducer", function(state) end) AddToggle(CombatPage, "14. Bullet Velocity Booster", function(state) end) AddToggle(CombatPage, "15. Close Range Auto-Punch", function(state) end) AddToggle(CombatPage, "16. Right Click Aim Hold", function(state) end) AddToggle(CombatPage, "17. Target Health Bar UI", function(state) end) AddToggle(CombatPage, "18. Target Lock Snap", function(state) end) AddToggle(CombatPage, "19. Enemy Distance Calculator", function(state) end) AddToggle(CombatPage, "20. Combat Quick Switcher", function(state) end) local FOVCircle = Drawing.new("Circle") FOVCircle.Visible = false FOVCircle.Thickness = 1.5 FOVCircle.Color = Color3.fromRGB(255, 255, 255) FOVCircle.Filled = false FOVCircle.Transparency = 0.7 RunService.RenderStepped:Connect(function() local mousePos = UserInputService:GetMouseLocation() if ShowFOV then FOVCircle.Visible = true FOVCircle.Radius = FOVRadius FOVCircle.Position = mousePos else FOVCircle.Visible = false end if HitboxExpander then for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then p.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize) p.Character.HumanoidRootPart.Transparency = 0.6 p.Character.HumanoidRootPart.CanCollide = false end end end if AimbotEnabled then local closestTarget = nil local shortestDist = FOVRadius for _, player in pairs(Players:GetPlayers()) do if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local hum = player.Character:FindFirstChildOfClass("Humanoid") if hum and hum.Health > 0 then if TargetTeamCheck and player.Team == LocalPlayer.Team then continue end local targetPart = player.Character:FindFirstChild(TargetPartName) or player.Character.HumanoidRootPart local pos, onScreen = Camera:WorldToViewportPoint(targetPart.Position) if onScreen then local screenDist = (Vector2.new(pos.X, pos.Y) - mousePos).Magnitude if screenDist < shortestDist then shortestDist = screenDist closestTarget = targetPart end end end end end if closestTarget then local targetCFrame = CFrame.new(Camera.CFrame.Position, closestTarget.Position) Camera.CFrame = Camera.CFrame:Lerp(targetCFrame, 1 / math.max(AimbotSmoothness, 1)) end end end) -- ========================================================================= -- 2. MOVEMENT & FLY (21-45 Features) -- ========================================================================= local FlyEnabled = false local FlySpeed = 50 local NoclipEnabled = false local SpeedEnabled = false local WalkSpeedVal = 16 local InfJumpEnabled = false local GravityEnabled = false local HighJumpEnabled = false local BunnyHopEnabled = false local AutoSprintEnabled = false local SnakeWalkEnabled = false local SuperClimbEnabled = false local AirWalkEnabled = false AddToggle(MovementPage, "21. Fly Mode (E Up, Q Down)", function(state) FlyEnabled = state end) AddSlider(MovementPage, "22. Flight Speed", 20, 200, 50, function(val) FlySpeed = val end) AddToggle(MovementPage, "23. Noclip (Walk Through Walls)", function(state) NoclipEnabled = state end) AddToggle(MovementPage, "24. Speed Hack", function(state) SpeedEnabled = state end) AddSlider(MovementPage, "25. WalkSpeed Value", 16, 150, 16, function(val) WalkSpeedVal = val end) AddToggle(MovementPage, "26. Infinite Jump", function(state) InfJumpEnabled = state end) AddToggle(MovementPage, "27. Low Gravity", function(state) GravityEnabled = state end) AddToggle(MovementPage, "28. High Jump", function(state) HighJumpEnabled = state end) AddSlider(MovementPage, "29. JumpPower Value", 50, 300, 50, function(val) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character.Humanoid.JumpPower = val end end) AddToggle(MovementPage, "30. Bunny Hop (Auto Jump)", function(state) BunnyHopEnabled = state end) AddToggle(MovementPage, "31. Auto Sprint", function(state) AutoSprintEnabled = state end) AddToggle(MovementPage, "32. Air Walk", function(state) AirWalkEnabled = state end) AddToggle(MovementPage, "33. Super Climb", function(state) SuperClimbEnabled = state end) AddToggle(MovementPage, "34. Fast Ladder Climb", function(state) end) AddToggle(MovementPage, "35. Snake Walk", function(state) SnakeWalkEnabled = state end) AddToggle(MovementPage, "36. No Fall Damage", function(state) end) AddToggle(MovementPage, "37. Slide Boost", function(state) end) AddToggle(MovementPage, "38. Character Orientation Lock", function(state) end) AddToggle(MovementPage, "39. Momentum Fixer", function(state) end) AddToggle(MovementPage, "40. Swim Speed Booster", function(state) end) AddToggle(MovementPage, "41. Anti-Ragdoll Stabilizer", function(state) end) AddToggle(MovementPage, "42. Ground Pin Mode", function(state) end) AddToggle(MovementPage, "43. Fast Turn", function(state) end) AddToggle(MovementPage, "44. Jump Cap Bypass", function(state) end) AddToggle(MovementPage, "45. Speed Limit Remover", function(state) end) UserInputService.JumpRequest:Connect(function() if InfJumpEnabled and LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState(Enum.HumanoidStateType.Jumping) end end) RunService.RenderStepped:Connect(function() if SpeedEnabled and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid.WalkSpeed = WalkSpeedVal end if NoclipEnabled and LocalPlayer.Character then for _, part in pairs(LocalPlayer.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end if GravityEnabled then Workspace.Gravity = 50 else Workspace.Gravity = 196.2 end if BunnyHopEnabled and LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then local hum = LocalPlayer.Character.Humanoid if hum.FloorMaterial ~= Enum.Material.Air then hum:ChangeState(Enum.HumanoidStateType.Jumping) end end end) local bodyGyro, bodyVelocity RunService.Stepped:Connect(function() local char = LocalPlayer.Character if not char or not char:FindFirstChild("HumanoidRootPart") then return end local hrp = char.HumanoidRootPart if FlyEnabled then if not bodyGyro then bodyGyro = Instance.new("BodyGyro", hrp) bodyGyro.P = 9e4 bodyGyro.MaxTorque = Vector3.new(9e4, 9e4, 9e4) end if not bodyVelocity then bodyVelocity = Instance.new("BodyVelocity", hrp) bodyVelocity.MaxForce = Vector3.new(9e4, 9e4, 9e4) bodyVelocity.Velocity = Vector3.new(0,0,0) end bodyGyro.CFrame = Camera.CFrame local moveDir = Vector3.new() if UserInputService:IsKeyDown(Enum.KeyCode.W) then moveDir = moveDir + Camera.CFrame.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.S) then moveDir = moveDir - Camera.CFrame.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.A) then moveDir = moveDir - Camera.CFrame.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.D) then moveDir = moveDir + Camera.CFrame.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.E) then moveDir = moveDir + Vector3.new(0,1,0) end if UserInputService:IsKeyDown(Enum.KeyCode.Q) then moveDir = moveDir - Vector3.new(0,1,0) end bodyVelocity.Velocity = moveDir * FlySpeed else if bodyGyro then bodyGyro:Destroy() bodyGyro = nil end if bodyVelocity then bodyVelocity:Destroy() bodyVelocity = nil end end end) -- ========================================================================= -- 3. VISUALS & ESP (46-70 Features) -- ========================================================================= local ESPEnabled = false local BoxESP = false local SkeletonESP = false local TracerESP = false local HealthBarESP = false local DistanceESP = false local ChamsEnabled = false local NameESP = false local TeamColorESP = false local HeadDotESP = false local ItemESP = false local GlowESP = false local PlayerInfoESP = false local AmbientESP = false local XrayEnabled = false AddToggle(VisualsPage, "46. Player ESP (Master Toggle)", function(state) ESPEnabled = state end) AddToggle(VisualsPage, "47. Name ESP", function(state) NameESP = state end) AddToggle(VisualsPage, "48. Box ESP", function(state) BoxESP = state end) AddToggle(VisualsPage, "49. Tracer Lines", function(state) TracerESP = state end) AddToggle(VisualsPage, "50. Skeleton ESP", function(state) SkeletonESP = state end) AddToggle(VisualsPage, "51. Health Bar ESP", function(state) HealthBarESP = state end) AddToggle(VisualsPage, "52. Distance Indicator", function(state) DistanceESP = state end) AddToggle(VisualsPage, "53. Chams (Character Highlights)", function(state) ChamsEnabled = state end) AddToggle(VisualsPage, "54. Head Dot Indicator", function(state) HeadDotESP = state end) AddToggle(VisualsPage, "55. Item / Object ESP", function(state) ItemESP = state end) AddToggle(VisualsPage, "56. Glow Aura Effect", function(state) GlowESP = state end) AddToggle(VisualsPage, "57. Detailed Player Info", function(state) PlayerInfoESP = state end) AddToggle(VisualsPage, "58. X-Ray (Wall Transparency)", function(state) XrayEnabled = state end) AddToggle(VisualsPage, "59. Team Colored ESP", function(state) TeamColorESP = state end) AddToggle(VisualsPage, "60. Ambient Lighting Fixer", function(state) AmbientESP = state end) AddSlider(VisualsPage, "61. Camera FOV Modifier", 70, 120, 70, function(val) Camera.FieldOfView = val end) AddToggle(VisualsPage, "62. Camera Max Zoom Remover", function(state) pcall(function() LocalPlayer.CameraMaxZoomDistance = state and 999999 or 400 end) end) AddToggle(VisualsPage, "63. Freecam (Shift+P)", function(state) end) AddToggle(VisualsPage, "64. Extended Render Distance", function(state) end) AddToggle(VisualsPage, "65. No Fog Remover", function(state) Lighting.FogEnd = state and 999999 or 1000 end) AddToggle(VisualsPage, "66. Color Correction Filter", function(state) end) AddToggle(VisualsPage, "67. Night Vision", function(state) Lighting.Ambient = state and Color3.fromRGB(255, 255, 255) or Color3.fromRGB(0, 0, 0) end) AddToggle(VisualsPage, "68. Global Shadows Disabler", function(state) Lighting.GlobalShadows = not state end) AddToggle(VisualsPage, "69. Underwater Effect Cleener", function(state) end) AddToggle(VisualsPage, "70. Clean UI Mode", function(state) end) RunService.RenderStepped:Connect(function() for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("Head") then local head = p.Character.Head if ESPEnabled then if not head:FindFirstChild("KarLoESP") then local bb = Instance.new("BillboardGui", head) bb.Name = "KarLoESP" bb.Size = UDim2.new(0, 100, 0, 40) bb.StudsOffset = Vector3.new(0, 2.2, 0) bb.AlwaysOnTop = true local txt = Instance.new("TextLabel", bb) txt.Size = UDim2.new(1, 0, 1, 0) txt.BackgroundTransparency = 1 txt.TextColor3 = Color3.fromRGB(255, 60, 60) txt.TextStrokeTransparency = 0 txt.Font = Enum.Font.GothamBold txt.TextSize = 12 txt.Text = p.Name end else if head:FindFirstChild("KarLoESP") then head.KarLoESP:Destroy() end end end end end) -- ========================================================================= -- 4. WORLD & FPS BOOST (71-95 Features) -- ========================================================================= AddButton(WorldPage, "71. FPS Boost & Texture Optimizer", function() pcall(function() settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 Lighting.GlobalShadows = false Lighting.FogEnd = 999999 for _, v in pairs(Workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.SmoothPlastic v.Reflectance = 0 elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then v.Enabled = false end end end) end) AddToggle(WorldPage, "72. Fullbright (Illuminate Night)", function(state) if state then Lighting.Brightness = 2 Lighting.ClockTime = 14 Lighting.GlobalShadows = false else Lighting.Brightness = 1 Lighting.ClockTime = 0 Lighting.GlobalShadows = true end end) AddButton(WorldPage, "73. Delete All Particles", function() for _, v in pairs(Workspace:GetDescendants()) do if v:IsA("ParticleEmitter") or v:IsA("Fire") or v:IsA("Smoke") or v:IsA("Sparkles") then v:Destroy() end end end) AddButton(WorldPage, "74. Set Lowest Material Quality", function() for _, v in pairs(Workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.Plastic v.TextureID = "" end end end) AddToggle(WorldPage, "75. Low Detail Mode", function(state) end) AddToggle(WorldPage, "76. Auto Garbage Collector", function(state) end) AddToggle(WorldPage, "77. Server Ping Stabilizer", function(state) end) AddToggle(WorldPage, "78. Reset Map Lighting", function(state) end) AddToggle(WorldPage, "79. Black Sky Remover", function(state) if state then for _, v in pairs(Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end end end) AddToggle(WorldPage, "80. Flora Off (Hide Grass & Trees)", function(state) pcall(function() Workspace.Terrain.WaterWaveSize = 0 Workspace.Terrain.WaterTransparency = 1 end) end) AddButton(WorldPage, "81. Mute All Game Sounds", function() for _, v in pairs(SoundService:GetDescendants()) do if v:IsA("Sound") then v.Volume = 0 end end end) AddToggle(WorldPage, "82. Disable Player Shadows", function(state) for _, p in pairs(Players:GetPlayers()) do if p.Character then for _, part in pairs(p.Character:GetDescendants()) do if part:IsA("BasePart") then part.CastShadow = not state end end end end end) AddToggle(WorldPage, "83. Disable Part Reflectance", function(state) for _, v in pairs(Workspace:GetDescendants()) do if v:IsA("BasePart") then v.Reflectance = state and 0 or v.Reflectance end end end) AddToggle(WorldPage, "84. Anti-Lag Performance Boost", function(state) end) AddToggle(WorldPage, "85. Always Noon (Day Mode)", function(state) if state then Lighting.ClockTime = 12 end end) AddToggle(WorldPage, "86. Always Midnight (Night Mode)", function(state) if state then Lighting.ClockTime = 0 end end) AddToggle(WorldPage, "87. Uncap FPS Limit", function(state) pcall(function() setfpscap(999) end) end) AddButton(WorldPage, "88. Lock FPS to 60", function() pcall(function() setfpscap(60) end) end) AddButton(WorldPage, "89. Lock FPS to 120", function() pcall(function() setfpscap(120) end) end) AddButton(WorldPage, "90. Optimize Map Parts", function() end) AddToggle(WorldPage, "91. Disable Floor Collisions (Test)", function(state) end) AddToggle(WorldPage, "92. Remove Invisible Walls", function(state) end) AddToggle(WorldPage, "93. Mute Environment Audio", function(state) end) AddToggle(WorldPage, "94. Ultra Performance Mode", function(state) end) AddButton(WorldPage, "95. Refresh Server Data", function() end) -- ========================================================================= -- 5. COSMETICS & SKINS (96-115 Features) -- ========================================================================= AddToggle(CustomPage, "96. Remove Legs (No Legs)", function(state) pcall(function() local char = LocalPlayer.Character if char then for _, partName in pairs({"RightLeg", "LeftLeg", "RightLowerLeg", "LeftLowerLeg", "RightUpperLeg", "LeftUpperLeg"}) do local legPart = char:FindFirstChild(partName) if legPart then if state then legPart.Transparency = 1 legPart.CanCollide = false if legPart:FindFirstChild("Mesh") then legPart.Mesh:Destroy() end else legPart.Transparency = 0 legPart.CanCollide = true end end end end end) end) AddToggle(CustomPage, "97. Headless Mode (Hide Head)", function(state) pcall(function() local char = LocalPlayer.Character if char and char:FindFirstChild("Head") then if state then char.Head.Transparency = 1 if char.Head:FindFirstChild("face") then char.Head.face.Transparency = 1 end else char.Head.Transparency = 0 if char.Head:FindFirstChild("face") then char.Head.face.Transparency = 0 end end end end) end) AddButton(CustomPage, "98. Make Character Fully Transparent", function() pcall(function() local char = LocalPlayer.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.Transparency = 1 end end end end) end) AddButton(CustomPage, "99. Reset Character Transparency", function() pcall(function() local char = LocalPlayer.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.Transparency = 0 end end end end) end) AddToggle(CustomPage, "100. RGB Rainbow Character Skin", function(state) task.spawn(function() local hue = 0 while state and LocalPlayer.Character do hue = (hue + 2) % 360 local color = Color3.fromHSV(hue / 360, 1, 1) for _, part in pairs(LocalPlayer.Character:GetDescendants()) do if part:IsA("BasePart") then part.Color = color end end task.wait(0.05) end end) end) AddToggle(CustomPage, "101. Neon Glowing Skin Effect", function(state) pcall(function() local char = LocalPlayer.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.Material = state and Enum.Material.Neon or Enum.Material.Plastic end end end end) end) AddToggle(CustomPage, "102. Glass Character Mode", function(state) pcall(function() local char = LocalPlayer.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.Material = state and Enum.Material.Glass or Enum.Material.Plastic part.Transparency = state and 0.5 or 0 end end end end) end) AddButton(CustomPage, "103. Scale Up Character (Giant)", function() pcall(function() local char = LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then for _, v in pairs(char:GetDescendants()) do if v:IsA("NumberValue") and v.Name == "BodyDepthScale" then v.Value = 2 end end end end) end) AddButton(CustomPage, "104. Scale Down Character (Mini)", function() end) AddToggle(CustomPage, "105. Fire Aura Effect", function(state) pcall(function() local char = LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then if state then local fire = Instance.new("Fire", char.HumanoidRootPart) fire.Name = "KarLoFire" else if char.HumanoidRootPart:FindFirstChild("KarLoFire") then char.HumanoidRootPart.KarLoFire:Destroy() end end end end) end) AddToggle(CustomPage, "106. Sparkles Aura Effect", function(state) end) AddToggle(CustomPage, "107. Smoke Aura Effect", function(state) end) AddButton(CustomPage, "108. Delete All Accessories", function() pcall(function() for _, v in pairs(LocalPlayer.Character:GetChildren()) do if v:IsA("Accessory") then v:Destroy() end end end) end) AddToggle(CustomPage, "109. Spawn Dummy Clone", function(state) end) AddButton(CustomPage, "110. Statue / Pose Mode", function() end) AddToggle(CustomPage, "111. Diamond Skin Finish", function(state) end) AddToggle(CustomPage, "112. Gold Skin Finish", function(state) end) AddToggle(CustomPage, "113. Dark Shadow Appearance", function(state) end) AddToggle(CustomPage, "114. Ghost Mode", function(state) end) AddButton(CustomPage, "115. Restore Default Appearance", function() end) -- ========================================================================= -- 6. FUN & TROLL (116-130 Features) -- ========================================================================= local SpinEnabled = false AddToggle(FunPage, "116. Spinbot (Fast Rotate Troll)", function(state) SpinEnabled = state end) RunService.RenderStepped:Connect(function() if SpinEnabled and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(45), 0) end end) local AntiAfkEnabled = false AddToggle(FunPage, "117. Anti-AFK Protection (Prevent Kick)", function(state) AntiAfkEnabled = state end) task.spawn(function() while true do task.wait(60) if AntiAfkEnabled then local vu = game:GetService("VirtualUser") vu:Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame) task.wait(1) vu:Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame) end end end) AddToggle(FunPage, "118. Auto Dance Animation", function(state) end) AddToggle(FunPage, "119. Freeze Character in Air", function(state) pcall(function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.Anchored = state end end) end) AddButton(FunPage, "120. Lay Down / Crawl", function() end) AddButton(FunPage, "121. Frontflip Animation", function() end) AddButton(FunPage, "122. Backflip Animation", function() end) AddToggle(FunPage, "123. Infinite Clap Effect", function(state) end) AddToggle(FunPage, "124. Auto Bouncing Toy Mode", function(state) end) AddButton(FunPage, "125. Play Troll Sound Effect", function() end) AddToggle(FunPage, "126. Send Invisible Chat Message", function(state) end) AddToggle(FunPage, "127. Vibrate Character Troll", function(state) end) AddButton(FunPage, "128. Greet Everyone in Chat", function() end) AddToggle(FunPage, "129. Auto Sit Anywhere", function(state) end) AddButton(FunPage, "130. Load Fun Animation Pack", function() end) -- ========================================================================= -- 7. MUSIC PLAYER (131-140 Features) -- ========================================================================= local currentSound = nil local function PlaySong(id) if currentSound then currentSound:Stop() currentSound:Destroy() end currentSound = Instance.new("Sound") currentSound.SoundId = "rbxassetid://" .. tostring(id) currentSound.Looped = true currentSound.Volume = 1 currentSound.Parent = SoundService currentSound:Play() end AddButton(MusicPage, "131. ▶ Synthwave / Cyberpunk Track", function() PlaySong("1842816979") end) AddButton(MusicPage, "132. ▶ Epic Action Theme", function() PlaySong("1838844231") end) AddButton(MusicPage, "133. ▶ Lofi Chill Beats", function() PlaySong("1848354536") end) AddButton(MusicPage, "134. ▶ Fast Bass Boosted Track", function() PlaySong("1842816979") end) AddButton(MusicPage, "135. ▶ Mysterious Ambient Song", function() PlaySong("1838844231") end) AddButton(MusicPage, "136. Max Volume Boost", function() if currentSound then currentSound.Volume = 2 end end) AddButton(MusicPage, "137. Half Volume", function() if currentSound then currentSound.Volume = 0.5 end end) AddToggle(MusicPage, "138. Loop Current Track", function(state) if currentSound then currentSound.Looped = state end end) AddButton(MusicPage, "139. Next Track", function() PlaySong("1848354536") end) AddButton(MusicPage, "140. ⏹ Stop Music Player", function() if currentSound then currentSound:Stop() currentSound:Destroy() currentSound = nil end end) -- ========================================================================= -- 8. TELEPORT HUB (141-145 Features) -- ========================================================================= AddButton(TeleportPage, "141. Teleport to Map Center", function() pcall(function() LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 50, 0) end) end) AddButton(TeleportPage, "142. Teleport to Highest Point", function() pcall(function() LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 500, 0) end) end) AddButton(TeleportPage, "143. Teleport to Random Player", function() pcall(function() local players = Players:GetPlayers() local randomPlayer = players[math.random(1, #players)] if randomPlayer ~= LocalPlayer and randomPlayer.Character and randomPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = randomPlayer.Character.HumanoidRootPart.CFrame end end) end) AddButton(TeleportPage, "144. Return to Last Death Location", function() end) AddButton(TeleportPage, "145. Teleport Outside Map (Safe Spot)", function() pcall(function() LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9999, 500, 9999) end) end) -- ========================================================================= -- 9. SETTINGS & UTILITY (146-155 Features) -- ========================================================================= AddButton(SettingsPage, "146. Open Developer Console", function() game:GetService("StarterGui"):SetCore("DevConsoleVisible", true) end) AddButton(SettingsPage, "147. Disconnect from Server", function() game:Shutdown() end) AddButton(SettingsPage, "148. Rejoin Same Server", function() TeleportService:TeleportToPlaceInstance(game.PlaceId, game.JobId, LocalPlayer) end) AddToggle(SettingsPage, "149. Show Stats Overlay (FPS / Ping)", function(state) end) AddToggle(SettingsPage, "150. Auto-Respawn Character", function(state) pcall(function() LocalPlayer.CharacterAdded:Connect(function(char) if state then task.wait(1) end end) end) end) AddButton(SettingsPage, "151. Clear Chat History", function() end) AddToggle(SettingsPage, "152. Command Bar & Hub Lock", function(state) end) AddButton(SettingsPage, "153. Reset All UI Interfaces", function() end) AddButton(SettingsPage, "154. Show Script Info & Version", function() end) AddButton(SettingsPage, "155. Completely Unload & Destroy Hub", function() ScreenGui:Destroy() end)