How to make inverted mouse controls?

Hello! Today I have a simple weird question, how would I make inverted mouse controls on roblox? Like when someone move the mouse up, then the camera goes down

2 Likes

You’d have to copy the camera controller and change the values, I’ve also seen something in roblox ingame settings that does that. Not sure if it’s still there tho.

1 Like

In which script is camera controller located?

Once you playtest it should be in
game.Players.Player.PlayerScripts.PlayerModule.CameraModule
image

Do you need exactly when the player moves the mouse or, as in normal control, clamps and moves?

I found something, if you change UserSettings():GetService("UserGameSettings"):GetCameraYInvertValue() to -1 it inverts your camera.
Script: CameraController > CameraInput



Please note: this only works for vertical invertment.

2 Likes

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