local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "FakeHackMenu" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 350, 0, 380) frame.Position = UDim2.new(0.5, -175, 0.5, -190) frame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) frame.BorderSizePixel = 0 frame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundTransparency = 1 title.Text = "🔥 HACK MENU v6.00.7 🔥" title.TextColor3 = Color3.fromRGB(255, 0, 0) title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = frame local subtitle = Instance.new("TextLabel") subtitle.Size = UDim2.new(1, 0, 0, 25) subtitle.Position = UDim2.new(0, 0, 0, 45) subtitle.BackgroundTransparency = 1 subtitle.Text = "Premium Exploit Panel" subtitle.TextColor3 = Color3.fromRGB(180, 180, 180) subtitle.TextScaled = true subtitle.Parent = frame local options = { "Auto Win", "Unlock All Treadmills", "Infinite Speed", "Infinite Money", "God Mode", "Teleport To Finish", "Auto Rebirth" } for i, option in ipairs(options) do local button = Instance.new("TextButton") button.Size = UDim2.new(0.85, 0, 0, 35) button.Position = UDim2.new(0.075, 0, 0, 80 + ((i-1) * 40)) button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) button.TextColor3 = Color3.new(1, 1, 1) button.Text = option button.TextScaled = true button.Font = Enum.Font.Gotham button.Parent = frame button.MouseButton1Click:Connect(function() player:Kick( "YOU HAVE BEEN BANNED FROM THE GAME.\n\nReason: Exploits (Hacks)" ) end) end local version = Instance.new("TextLabel") version.Size = UDim2.new(1, 0, 0, 25) version.Position = UDim2.new(0, 0, 0, 350) version.BackgroundTransparency = 1 version.Text = "Hack Menu Version 6.00.7" version.TextColor3 = Color3.fromRGB(120, 120, 120) version.TextScaled = true version.Parent = frame