Pressing Ctrl while zooming forces you to hold Ctrl to zoom manually, otherwise tilts camera

Where is the fix??? I still have this issue.

1 Like

Bumping thread, have been experiencing this in every game including my own.
This bug only happens in-game and not in studio
This appears to be related to UserInputService.PointerAction

In studio and in-game, I have tried running this line of code:

game:GetService("UserInputService").PointerAction:Connect(print)

The results in studio (when the camera operates correctly)

The results in-game (when the camera tilts instead)

As you can see, in-game PointerAction is reporting a pan instead of a wheel.

2 Likes

I am surprised why the Roblox Staff hasn’t responded on this thread sincec like a year.

2 Likes

I’m still getting this issue and have a logitech mouse

1 Like

Hey Developers, we rolled out a fix recently so this issue should now be resolved!
Please let us know if this issue is still occurring.

12 Likes

Still experiencing the bug. Just went in game and tested and it still occurs.

1 Like

It’s still happening just tested it out.

1 Like

I can still reproduce this bug in an empty baseplate created today, unfortunately.

3 Likes

Yep, i just noticed this is still an issue on my game.

1 Like

I have found (yet another) temporary fix for this.
Proceed with caution, as I’m not 100% sure if this breaks some obscure camera scroll feature that I’m unaware of.

First, you need to get the default PlayerModule. To do this, playtest in studio and go to StarterPlayer > StarterPlayerScripts and copy PlayerModule.

image

Next, stop playtesting then paste the PlayerModule into StarterPlayer > StarterPlayerScripts.
After line 332 in the CameraInput script (PlayerModule > CameraModule > CameraInput), add the following:

if pinch == 0 then
	pinch = math.sign(pan.Y)
	pan = Vector2.new()
end 

It should look like this (pardon my horrible colors)
image

Or, if you’d like, just replace the CameraInput ModuleScript with this:
CameraInput.rbxm (6.3 KB)

Basically what this does is, when the scrolling is broken, extract the correct values from the broken camera scrolling and replace the broken values with the fixed ones.

Hope this helps!

9 Likes

You just saved Roblox Parkour, thank you so much.

2 Likes

It has been 1 year, and no fix. Please update us!

1 Like

I have a cheap 10 dollar microsoft mouse that does the same thing. No extra buttons it is just your basic mouse. I also have friends who have the same issues.

1 Like

Checking in, still have this bug as of today.

I still get this issue on my logitech mouse. (happened yesterday)

1 Like

Yeah it still happens, I just created my own scrollwheel module cause the issue just doesn’t seem to be going away.

1 Like

Still happens for me. I’m on a Logitech M570 trackball.

still happening - can reproduce in most games

edit: not on a logitech mouse

I run into this frequently still.

Its so frustrating because I have to rejoin a game to fix it. Some games I am playing require constant changing of your zoom-factor and angle of your camera and this just makes the game so much more difficult to play.

Video of me reproducing the issue.
First I scroll normally. Then I press ctrl and zoom in.

4 Likes

Hey, sorry about your issue, but what’s the name of that game in your video again? I can’t remember or find it myself.