-- 007n7 exploit panel (Cyan Theme) -- Put this inside a LocalScript in StarterGui local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") local root = char:WaitForChild("HumanoidRootPart") -- GUI Creation local screenGui = Instance.new("ScreenGui") screenGui.Name = "007n7gui f3x" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 220, 0, 280) mainFrame.Position = UDim2.new(0.1, 0, 0.2, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(15, 25, 35) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 35) title.BackgroundColor3 = Color3.fromRGB(0, 180, 220) title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Text = "007gui made by 007n7_alt2026" title.TextSize = 14 title.Font = Enum.Font.SourceSansBold title.Parent = mainFrame local function createBtn(text, yPos, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.85, 0, 0, 35) btn.Position = UDim2.new(0.075, 0, 0, yPos) btn.BackgroundColor3 = Color3.fromRGB(0, 210, 255) btn.TextColor3 = Color3.fromRGB(15, 25, 35) btn.Text = text btn.TextSize = 13 btn.Font = Enum.Font.SourceSansBold btn.Parent = mainFrame btn.MouseButton1Click:Connect(callback) end -- Fly Toggle State local flying = false local bv, bg createBtn("Toggle Fly", 45, function() flying = not flying if flying then bv = Instance.new("BodyVelocity", root) bv.MaxForce = Vector3.new(math.huge, math.huge, math.huge) bv.Velocity = Vector3.new(0, 0, 0) bg = Instance.new("BodyGyro", root) bg.MaxTorque = Vector3.new(math.huge, math.huge, math.huge) task.spawn(function() while flying and root and workspace.CurrentCamera do bg.CFrame = workspace.CurrentCamera.CFrame local cam = workspace.CurrentCamera local moveDir = Vector3.new() -- basic hover/stay still or look logic bv.Velocity = cam.CFrame.LookVector * 50 task.wait() end end) else if bv then bv:Destroy() end if bg then bg:Destroy() end end end) createBtn("Jump Boost", 90, function() hum.JumpPower = 150 end) createBtn("Speed Boost", 135, function() hum.WalkSpeed = 100 end) createBtn("Decal Spam (007n7)", 180, function() for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") then for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Texture = "rbxassetid://100286482535250" -- placeholder 007n7 asset ID decal.Face = face decal.Parent = v end end end end) createBtn("Reset Stats", 225, function() hum.JumpPower = 50 hum.WalkSpeed = 16 flying = false if bv then bv:Destroy() end if bg then bg:Destroy() end end)