-- LocalScript local Players = game:GetService("Players") local Player = Players.LocalPlayer local Camera = workspace.CurrentCamera repeat task.wait() until Camera.CameraType == Enum.CameraType.Custom local function rotateCamera(deg) local root = Player.Character and Player.Character:FindFirstChild("HumanoidRootPart") if not root then return end local newCFrame = CFrame.Angles(0, math.rad(deg), 0) * Camera.CFrame Camera.CFrame = CFrame.new(Camera.CFrame.Position) * newCFrame.Rotation end local function restoreCamera() rotateCamera(-45) task.wait() rotateCamera(45) end -- GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "RotateCamGui" screenGui.ResetOnSpawn = false screenGui.Parent = Player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 150, 0, 150) -- 🔥 POSISI ATAS KANAN TAPI TIDAK POJOK frame.AnchorPoint = Vector2.new(1, 0) frame.Position = UDim2.new(1, -30, 0, 40) frame.BackgroundColor3 = Color3.fromRGB(60, 60, 60) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui local button = Instance.new("TextButton") button.Size = UDim2.new(1, 0, 1, 0) button.Text = "flick" button.TextScaled = true button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Parent = frame button.MouseButton1Click:Connect(restoreCamera) -- Visual feedback button.MouseButton1Down:Connect(function() button.BackgroundColor3 = Color3.fromRGB(100, 100, 255) end) button.MouseButton1Up:Connect(function() button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) end)