[WARN] "ActivateCameraController did not select a module."

local Cam = workspace.CurrentCamera
Cam.CameraType = "Scriptable"
Cam.CFrame = CFrame.new(-59.414, 20.361, -37.535)

When I run this code I get a warning from a core Module script called CameraModule.

“ActivateCameraController did not select a module.”

If there’s a way to fix this please let me know, also, I’ve read through the two topics I can find about this and they did not help.

I have the same issue, this is how i patch the problem
Try that

workspace.CurrentCamera.CameraType = Enum.CameraType.Scriptable

workspace.Camera.CameraType = Enum.CameraType.Custom

wait()

workspace.Camera.CameraType = Enum.CameraType.Scriptable
workspace.Camera.CFrame = CFrame.new(-59.414, 20.361, -37.535)

Also don’t use “Scriptable” use Enum.CameraType.Scriptable

3 Likes

I think this could be an issue with the Roblox camera controller script. You could report it to the bug reports category.
When settings enums please don’t do “Scriptable” do intead Enum.CameraType.Scriptable

1 Like