How do I change the camera turn sensitivity

I’ve seen other topics about this but none of them have the answer, so I was wondering if someone could tell me how lol

1 Like

If you’re using the default Roblox camera system, sensitivity is based upon the user’s mouse/touch sensitivity. There’s a property in UserInputService that lets you change exactly that!

UserInputService.MouseDeltaSensitivity = 0.1 --> Very low sensitivity
UserInputService.MouseDeltaSensitivity = 3 --> Very high sensitivity

Here’s the API reference, too, if you need any more info!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.