Panning the Camera broken on Track CameraType for Macs

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: https://www.roblox.com/games/440382027/MouseCursor

Repro Steps:

  1. Join Place linked on a Mac
  2. 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.