Zoom In Camera Issue With Player Module

I’m attempting for my zoom in to automatically zoom into the character without a tween, but with the playermodule script that roblox has it zooms in and tweens weirdly along with this it doesn’t fully lock into first person immediately, it’s hard to explain so I’ll send the clips below.

How I want my zoom in to look like (I’m using different scripts in this clip) - f7b74f69d16478578a67fd4d80c93fa8.gif (gyazo.com)

How the zoom in looks with playermodule (how I don’t want it to look) - 7ee6884d8a2142173f6bc5d702c22125.gif (gyazo.com)

I believe you just need to set the minimum and maximum to the same value:

Player.CameraMinZoomDistance = 10
Player.CameraMaxZoomDistance = 10

I’m not looking to stop my zoom in at a specific spot, I’m trying to make it so when I zoom in I don’t see my character and it locks first person quick like in the first clip I showed, as you see in the second clip it takes a little delay for all of that to happen as in the first it happens in a instant

If you change the minimum and maximum then it will instantly zoom to that level.

After you have the view you want, you change them back so players can still zoom in and out.

I adjusted the variables within the script and fixed it.

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