Any way to make the camera zoom out and zoom in with script?

any way to make the camera zoom out and zoom in with script? i want to match it with time stop

i tried

currentcamera and FOV

1 Like

Just Change the players CameraMaxZoomDistance and CameraMinZoomDistance.

local plr = game.Players.LocalPlayer

plr.CameraMaxZoomDistance = 10
plr.CameraMinZoomDistance = 10
1 Like

can i use

plr.CameraMinZoomDistance = 10
wait(0.05)
plr.CameraMinZoomDistance = 20
wait(0.05)
plr.CameraMinZoomDistance = 30

Yes, but, as to make sure they don’t zoom out, I recommend also changing the max zoom distance at the same time.

new solution , Use TweenService