so I’m confused about something I’m having a problem with not understanding the Camera system in Roblox Studio I want to make the camera on the character zoom in and out by itself (a little) when idle for the problem how do I make a script so that this can run in idle no problem The only thing I’m confused about is how the camera works
To do this, you could change the field of view in a script like this: (The default FOV is 70)
while wait(1) do
workspace.Camera.FieldOfView = 80
wait(1)
workspace.Camera.FieldOfView = 70
end
You could put this at the end of a LocalScript, and everything else in the script should work fine.
This works fine but I’m still confused about how to make this look smooth?
You could use a tween, but I’m not able to create an example at the moment.
Thank you for providing the answer If you have time, please provide an example
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.