I saw people recommend to change the CameraType to Scriptable to disable the players control over it, got any idea what I’m doing wrong here?
local player = game:GetService("Players").LocalPlayer
local camera = workspace.CurrentCamera
print(camera.CameraType)
camera.CameraType = Enum.CameraType.Scriptable
print(camera.CameraType)