Make player's camera movable but without following anything

I need the camera to be movable, but stuck in one position. I want the orientation to change, but not the position.

change the CameraSubject to nil

you cant when its on Custom mode

any other mode makes it impossible to move

change it into classic or scriptable then change camerasubject to nil

or just

local camerapart = Instance.new("Part",workspace.CurrentCamera)
camerapart.CFrame = workspace.CurrentCamera.CFrame
camerapart.Anchored = true
camerapart.Size = Vector3.zero()
camerpart.Transparency = 1
workspace.CurrentCamera.CameraSubject = camerapart

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.