-- BITCH MENU — WINDOWS DRAGGABLE + STARTS WITH "NIGGER" local UIS = game:GetService("UserInputService") local gui = Instance.new("ScreenGui", game.CoreGui) gui.ResetOnSpawn = false -- Window local win = Instance.new("Frame", gui) win.Size = UDim2.new(0,720,0,560) win.Position = UDim2.new(0.5,-360,0.5,-280) win.BackgroundColor3 = Color3.fromRGB(25,25,25) win.Visible = false Instance.new("UICorner", win).CornerRadius = UDim.new(0,12) -- Title bar (draggable) local bar = Instance.new("Frame", win) bar.Size = UDim2.new(1,0,0,50) bar.BackgroundColor3 = Color3.fromRGB(220,20,20) bar.Name = "Drag" Instance.new("UICorner", bar).CornerRadius = UDim.new(0,12) local title = Instance.new("TextLabel", bar) title.Size = UDim2.new(1,-140,1,0) title.Position = UDim2.new(0,10,0,0) title.BackgroundTransparency = 1 title.Text = "BITCH MENU" title.TextColor3 = Color3.new(1,1,1) title.Font = Enum.Font.GothamBlack title.TextSize = 24 title.TextXAlignment = Enum.TextXAlignment.Left -- Close button local close = Instance.new("TextButton", bar) close.Size = UDim2.new(0,45,0,45) close.Position = UDim2.new(1,-50,0,2.5) close.BackgroundColor3 = Color3.fromRGB(255,60,60) close.Text = "X" close.TextColor3 = Color3.new(1,1,1) close.Font = Enum.Font.GothamBold close.TextSize = 28 Instance.new("UICorner", close).CornerRadius = UDim.new(0,8) close.MouseButton1Click:Connect(function() win.Visible = false end) -- Slur label — starts with NIGGER local slur = Instance.new("TextLabel", win) slur.Size = UDim2.new(1,-40,0,60) slur.Position = UDim2.new(0,20,0,60) slur.BackgroundTransparency = 1 slur.Text = "NIGGER" -- starts with NIGGER slur.TextColor3 = Color3.fromRGB(255,80,80) slur.Font = Enum.Font.GothamBlack slur.TextSize = 56 slur.TextXAlignment = Enum.TextXAlignment.Center local slurs = {"nigger","nigga","faggot","tranny","retard","cunt","chink","spic","kike","paki","wetback","raghead","sandnigger","gook","coon","porch monkey","dyke","beaner"} spawn(function() wait(2) while wait(1.5) do slur.Text = slurs[math.random(#slurs)]:upper() end end) -- Editor + Execute (same as before) local editor = Instance.new("TextBox", win) editor.Size = UDim2.new(1,-40,1,-180) editor.Position = UDim2.new(0,20,0,130) editor.BackgroundColor3 = Color3.fromRGB(35,35,35) editor.TextColor3 = Color3.new(1,1,1) editor.Font = Enum.Font.Code editor.TextSize = 18 editor.MultiLine = true editor.Text = '-- BITCH MENU\nprint("owned")' Instance.new("UICorner", editor).CornerRadius = UDim.new(0,10) local exec = Instance.new("TextButton", win) exec.Size = UDim2.new(1,-40,0,70) exec.Position = UDim2.new(0,20,1,-90) exec.BackgroundColor3 = Color3.fromRGB(220,20,20) exec.Text = "EXECUTE" exec.TextColor3 = Color3.new(1,1,1) exec.Font = Enum.Font.GothamBlack exec.TextSize = 40 Instance.new("UICorner", exec).CornerRadius = UDim.new(0,12) exec.MouseButton1Click:Connect(function() loadstring(editor.Text)() end) -- Dragging local dragging,startPos,dragInput bar.InputBegan:Connect(function(i) if i.UserInputType==Enum.UserInputType.MouseButton1 then dragging=true;startPos=win.Position;dragInput=i.Position end end) bar.InputChanged:Connect(function(i) if dragging and i.UserInputType==Enum.UserInputType.MouseMovement then local delta=i.Position-dragInput win.Position=UDim2.new(startPos.X.Scale,startPos.X.Offset+delta.X,startPos.Y.Scale,startPos.Y.Offset+delta.Y) end end) UIS.InputEnded:Connect(function(i)if i.UserInputType==Enum.UserInputType.MouseButton1 then dragging=false end end) -- Insert toggle UIS.InputBegan:Connect(function(k) if k.KeyCode == Enum.KeyCode.Insert then win.Visible = not win.Visible end end) task.wait(0.3) win.Visible = true print("BITCH MENU loaded — starts with NIGGER, draggable, ready to execute")