With CameraType Track, holding down right click does not lock the mouse and does not pan the camera. This only occurs in live servers and does not occur in Studio.
Repro Place: MouseCursor - Roblox
Repro Steps:
- Join Place linked on a Mac
- Try to rotate camera with Right Click, fails to pan
Tested on Windows 10 and it works there, just doesn’t work on Mac
Bonus: In a game of mine I use a Custom CameraScript, which is exactly the same as the Defaults, except for one section where I pretty much unbind I and O keys:
if this.ZoomEnabled then
if input.KeyCode == Enum.KeyCode.I then
--this:ZoomCameraBy(-5)
elseif input.KeyCode == Enum.KeyCode.O then
--this:ZoomCameraBy(5)
end
end
However, when the CameraType is set to Track, the I and O keys still zoom the camera in and out.