Whenever I right click the camera is locked. How can I turn this off in Roblox Studio/is there a way?
1 Like
Go into Camera in Workspace and check for the CameraType property: What does it say?
Do you have a script that changes the default camera mode?
i only have it in studio i already tried to change the camera mode
so when you go into settings when play testing it doesn’t say the camera type has been set by the developer? Usually the default camera mode is classic, perhaps you could use a script to change the camera mode.
local StarterPlayer = game:GetService("StarterPlayer")
StarterPlayer.CameraMode = Enum.CameraMode.Classic
You could set the sensitivity to 0
found now a way to disable it in “StarterPlayer”
I see, glad your problem was solved!