Hello. So I’m trying to move the camera to a certain position and make it face a object for a cutscene. For some reason the camera Isn’t moving at all.
Camera controls only work in a local script, so check that first. Also, the camera will keep resetting itself, so you have to keep placing it in a run service loop RunService:BindToRenderStep("MyCamera", Enum.RenderPriority.Camera.Value + 1, UpdateCamera) where UpdateCamera is a function that contains your camera manipulation code.
I have tried doing a remote event to trigger the camera change in a local script but for some reason the remote event wasn’t firing. Sorry for the trouble