The title explains everything. I dont want the camera to move at all. And disable shift lock
2 Likes
You can set the CameraType
property of the Workspace.CurrentCamera
instance to Scriptable
to completely stop the camera’s position from being oriented around the player’s character and you can disable shiftlock by setting the StarterPlayer.EnableMouseLockOption
property to false
to disable shift-lock in your game.
9 Likes
I believe you will need a local script to change the camera, as the Camera in workspace is for studio.
Workspace.CurrentCamera.CameraType = "Scriptable"
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.