Setting CameraSubject results in a warning

Hi, I am trying to set the camera towards a part, but it’s not working and giving me the warning: ActivateCameraController did not select a module. Here’s my code:

		camera.CameraType = Enum.CameraType.Scriptable
		camera.CameraSubject = game.Workspace.Lanes:FindFirstChild(player.LaneNumber.Value).BowlingBall
		camera.CFrame = CFrame.new(0,0,-2)

What do you mean by not working? Is the camera going to the wrong spot? Maybe the ActivateCameraController thing is an unrelated warning caused by a bug in the default camera scripts.

Figured out the issue, you need to set the camera to Follow like so:

		camera.CameraType = Enum.CameraType.Follow
1 Like