[Mobile]How to lock camera when player draggin gui?

How to make mobile player cant move they camera when he use colorpicker gui?

1 Like

You can make the CameraType scriptable making it so the player cannot move the camera, then you can just set it back to cameratype to custom so the player can move the camera

1 Like

on the client do

game.Workspace.CurrentCamera.CameraType = Enum.CameraType.Fixed

or

game.Workspace.CurrentCamera.CameraType = 0

This method is much better as literally nothing can move the camera.

4 Likes