Camera not changing CFrames

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.

Here is my code:

    local Cam = workspace.CurrentCamera
	Cam.CameraType = Enum.CameraType.Scriptable
	Cam.CFrame = game.Workspace.CamPart.CFrame
	Cam.Focus = game.Workspace.World.Portal.Frame.CFrame

Thanks!

Where did you put the local script?

I recommend putting it in StarterPlayer > StarterCharacterScripts

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.

For more info, check out… Controlling the players camera (roblox.com)

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

Here are instructions for firing an event server to client… RemoteEvent.OnClientEvent (roblox.com)

I don’t mean to be mean but I know how to use remote events perfectly fine.