I'm making an intro that involves looking at a door. I've experimented with different CameraTypes but nothing makes it how I want it to. I want it to look at the door and then just stay there and can't be moved. Here is my script:
local target = workspace.Focus local camera = workspace.Camera wait(.5) camera.CameraType = "Scriptable" camera.CameraSubject = CFrame.new(workspace.Focus.Position)
Current script ^^
Scriptable is the only type that makes it stay still. But I can't get it to focus right that is my problem. It won't look directly where I want it too.
try
local target = workspace.Focus local camera = workspace.Camera wait(.5) camera.CameraType = "Scriptable" camera.CoordinateFrame = CFrame.new(brick.Position,target.Position)