I wanna position the player's camera in such a way that it will always be locked to a part in the workspace without being able to turn or move, but I also want to allow for the mouse to move. This is for a menu type of level.
cam = game.Workspace.CurrentCamera target = game.Workspace.IntroCamera --The part that the camera will be attached to cam.CameraSubject = target cam.CameraType = "Scriptable" --Setting it to scriptable so that the camera is still, however this causes the mouse to be unmovable cam.CFrame = target.CFrame
So I've managed to make the camera locked to a part without the player able to turn it, but when I test it out, I can't move the mouse around, as it is locked to the center of the screen. How can I fix this?