How to gradually change the FOV?

So I will be having some parts in my game where the FOV is a higher amount in chase scenes. I’m trying make it so the FOV goes from 70, to 80. But gradually, not instantly. If someone can find a way to to help me, I would appreciate it! I will explain more if needed.

https://developer.roblox.com/en-us/api-reference/class/TweenService

Which area section should I read?

game:GetService("TweenService"):Create(workspace.CurrentCamera, TweenInfo.new(0.5, Enum.EasingStyle.Quad), {FieldOfView = 80}):Play()

Thanks a bunch! I’m pretty new to scripting lol. I can use this line of code for other things in my game too.

1 Like