I have a game where you get locked in First Person during a chase scene, and after the chase scene your camera mode gets set back to classic. For some reason, even after the mode getting set back to classic, I cannot set the CurrentCamera CFrame to anything
task.wait(1)
local player = game.Players.LocalPlayer
game.Workspace.CurrentCamera.CameraType = Enum.CameraType.Scriptable
game.Workspace.CurrentCamera.CFrame = game.Workspace.ChaseEnd1.CFrame -- this works
game.Workspace.CurrentCamera.CameraSubject = player.Character.Humanoid
task.wait(1)
print('first person')
player.CameraMode = Enum.CameraMode.LockFirstPerson
task.wait(3)
print('undone')
player.CameraMode = Enum.CameraMode.Classic
game.Workspace.CurrentCamera.CameraType = Enum.CameraType.Scriptable
game.Workspace.CurrentCamera.CFrame = game.Workspace.ChaseEnd1.CFrame --doesn't work