-- ii's Dumb Menu v2: UNLOCKED CHAOS local P = game:GetService("Players").LocalPlayer local Character = P.Character or P.CharacterAdded:Wait() local Humanoid = Character:WaitForChild("Humanoid") local Root = Character:WaitForChild("HumanoidRootPart") local UIS = game:GetService("UserInputService") local L = game:GetService("Lighting") -- 1. GUI BASE if P.PlayerGui:FindFirstChild("iiDumbV2_NoKey") then P.PlayerGui.iiDumbV2_NoKey:Destroy() end local SG = Instance.new("ScreenGui", P.PlayerGui); SG.Name = "iiDumbV2_NoKey"; SG.ResetOnSpawn = false local Main = Instance.new("Frame", SG) Main.Size = UDim2.new(0, 380, 0, 480); Main.Position = UDim2.new(0.5, -190, 0.5, -240) Main.BackgroundColor3 = Color3.fromRGB(25, 25, 25); Main.Active = true; Main.Draggable = true Instance.new("UICorner", Main) local Title = Instance.new("TextLabel", Main) Title.Size = UDim2.new(1, 0, 0, 50); Title.Text = "ii's DUMB MENU V2"; Title.TextColor3 = Color3.fromRGB(255, 100, 0) Title.Font = "FredokaOne"; Title.TextSize = 25; Title.BackgroundTransparency = 1 -- 2. CONTAINERS local Hub = Instance.new("Frame", Main); Hub.Size = UDim2.new(1,0,1,-60); Hub.Position = UDim2.new(0,0,0,50); Hub.BackgroundTransparency = 1 local FunPage = Instance.new("ScrollingFrame", Main); FunPage.Size = UDim2.new(1,-20,1,-120); FunPage.Position = UDim2.new(0,10,0,60); FunPage.Visible = false; FunPage.BackgroundTransparency = 1; FunPage.ScrollBarThickness = 0 local OpPage = Instance.new("ScrollingFrame", Main); OpPage.Size = UDim2.new(1,-20,1,-120); OpPage.Position = UDim2.new(0,10,0,60); OpPage.Visible = false; OpPage.BackgroundTransparency = 1; OpPage.ScrollBarThickness = 0 Instance.new("UIListLayout", FunPage).Padding = UDim.new(0,5); Instance.new("UIListLayout", OpPage).Padding = UDim.new(0,5) -- 3. MOD BUTTON ENGINE local function AddMod(parent, name, clr, cb) local b = Instance.new("TextButton", parent); b.Size = UDim2.new(1, 0, 0, 40) b.BackgroundColor3 = clr; b.Text = name; b.TextColor3 = Color3.new(1,1,1); b.Font = "FredokaOne" Instance.new("UICorner", b); b.MouseButton1Click:Connect(function() pcall(cb) end) end -- 4. FUN MODS (The Troll Gallery) AddMod(FunPage, "FLY (F TO TOGGLE)", Color3.fromRGB(0, 150, 200), function() _G.fly = not _G.fly local bv = Instance.new("BodyVelocity", Root) bv.MaxForce = Vector3.new(9e9, 9e9, 9e9) while _G.fly do bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 100 task.wait() end bv:Destroy() end) AddMod(FunPage, "HEADLESS (CLIENT)", Color3.fromRGB(70,70,70), function() Character.Head.Transparency = 1 end) AddMod(FunPage, "RAINBOW SKIN", Color3.fromRGB(70,70,70), function() while task.wait() do for _, v in pairs(Character:GetChildren()) do if v:IsA("BasePart") then v.Color = Color3.fromHSV(tick()%5/5, 1, 1) end end end end) AddMod(FunPage, "SPINBOT", Color3.fromRGB(70,70,70), function() _G.spin = not _G.spin while _G.spin do Root.CFrame *= CFrame.Angles(0, math.rad(50), 0); task.wait() end end) AddMod(FunPage, "GIANT CHARACTER", Color3.fromRGB(70,70,70), function() local Hum = Character.Humanoid Hum:FindFirstChild("BodyHeightScale").Value = 3 Hum:FindFirstChild("BodyWidthScale").Value = 3 end) AddMod(FunPage, "F3X MENU (OWNER)", Color3.fromRGB(255, 100, 0), function() --[[ F3X Logic ]] end) -- 5. OP MODS (The Server Destroyers) AddMod(OpPage, "🌌 BLACK HOLE (ORBIT)", Color3.fromRGB(100, 0, 200), function() _G.BH = not _G.BH local a = 0 while _G.BH do a = a + 0.1 for _, v in pairs(game.Players:GetPlayers()) do if v ~= P and v.Character then v.Character.HumanoidRootPart.CFrame = Root.CFrame * CFrame.Angles(0, a, 0) * CFrame.new(15, 0, 0) end end task.wait() end end) AddMod(OpPage, "☀️ WHITE HOLE (FLING)", Color3.fromRGB(200, 200, 200), function() _G.WH = not _G.WH while _G.WH do for _, v in pairs(game.Players:GetPlayers()) do if v ~= P and v.Character then local dist = (v.Character.HumanoidRootPart.Position - Root.Position).Magnitude if dist < 50 then v.Character.HumanoidRootPart.Velocity = (v.Character.HumanoidRootPart.Position - Root.Position).Unit * 500 end end end task.wait() end end) AddMod(OpPage, "💀 KILL AURA (15 STUDS)", Color3.fromRGB(150, 0, 0), function() while task.wait(0.1) do for _, v in pairs(game.Players:GetPlayers()) do if v ~= P and v.Character and (v.Character.Head.Position - Root.Position).Magnitude < 15 then v.Character:BreakJoints() end end end end) AddMod(OpPage, "💥 SUPERNOVA (CRASH)", Color3.fromRGB(0,0,0), function() while task.wait() do for i=1,1000 do Instance.new("Part", workspace); Instance.new("Message", workspace).Text = "CRASHED BY D00MKIDD" end end end) AddMod(OpPage, "🚪 SHADOW REALM ALL", Color3.fromRGB(40,0,80), function() local box = Instance.new("Part", workspace); box.Size = Vector3.new(100,10,100); box.CFrame = CFrame.new(0,-1000,0); box.Anchored = true while task.wait() do for _, v in pairs(game.Players:GetPlayers()) do if v ~= P and v.Character then v.Character.HumanoidRootPart.CFrame = box.CFrame * CFrame.new(0,5,0) end end end end) AddMod(OpPage, "🌑 TOTAL BLACKOUT", Color3.fromRGB(20,20,20), function() L.ClockTime = 0; L.Brightness = 0; L.OutdoorAmbient = Color3.new(0,0,0) end) -- 6. NAVIGATION local function SetupHub() local f = Instance.new("TextButton", Hub); f.Size = UDim2.new(0.8,0,0,80); f.Position = UDim2.new(0.1,0,0.1,0) f.Text = "FUN CATEGORY"; f.BackgroundColor3 = Color3.fromRGB(0, 120, 255); f.Font = "FredokaOne"; f.TextSize = 20; Instance.new("UICorner", f) local o = Instance.new("TextButton", Hub); o.Size = UDim2.new(0.8,0,0,80); o.Position = UDim2.new(0.1,0,0.4,0) o.Text = "OVERPOWERED"; o.BackgroundColor3 = Color3.fromRGB(200, 0, 0); o.Font = "FredokaOne"; o.TextSize = 20; Instance.new("UICorner", o) f.MouseButton1Click:Connect(function() Hub.Visible = false; FunPage.Visible = true; Title.Text = "FUN MODS" end) o.MouseButton1Click:Connect(function() Hub.Visible = false; OpPage.Visible = true; Title.Text = "OP MODS" end) end local function Back(p) local b = Instance.new("TextButton", p); b.Size = UDim2.new(0.4,0,0,35); b.Position = UDim2.new(0.3,0,0.9,0) b.Text = "BACK TO HUB"; b.BackgroundColor3 = Color3.new(0.2,0.2,0.2); b.TextColor3 = Color3.new(1,1,1); Instance.new("UICorner", b) b.MouseButton1Click:Connect(function() p.Visible = false; Hub.Visible = true; Title.Text = "ii's DUMB MENU V2" end) end SetupHub(); Back(FunPage); Back(OpPage) UIS.InputBegan:Connect(function(io) if io.KeyCode == Enum.KeyCode.LeftControl then Main.Visible = not Main.Visible end end)