[Camera Tracker Script] How do I make FOV increase depending on how far the player is

Issue:

Alright so I want to make a Camera Tracker tool so that its easier for me make videos while trying to capture someone moving using Free Cam. Sometimes they move to fast that it looks unnatural.

Here’s some examples of me using it:

Now here is the video of the issue:

as I walk closer the fov increases but I want it to decrease instead of increasing.

I have tried changing the values to negative number but it doesn’t

Line of code that changes fov:
Line

if AutoFOV == true then
	local FOV = (character.Head.Position - Target.Position).magnitude + .7

	workspace.CurrentCamera.FieldOfView = FOV
end

The reason it ain’t working is because of the Fov cap, it’s making it all wonky

	local FOV = (game.Players.LocalPlayer.Character.Head.Position  + game.Workspace.Target.Position).magnitude - 120

	workspace.CurrentCamera.FieldOfView = FOV

All I did was made the magnitude into a positive and minus about 120 of the magnitude, which should allow the number to fit in with fov cap. If it’s not the effect want, you might need to script your own zoom with cframe.

ill try see if this works. aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

doesnt work sadly

ignore this
AAAAAAAAAAAAAAAAAAAAAAAAAAA

hmm, I tested it myself in studio and it seemed to work, but If it ain’t working sorry tried my best.

try:

local FOV = (character.Head.Position - Target.Position).magnitude + .7

workspace.CurrentCamera.FieldOfView = 120-FOV
1 Like

@BeyondTheEgde beat me to it.

Looks like this:

local FOV = 120 - (Head.Position - Spawn.Position).Magnitude
workspace.CurrentCamera.FieldOfView = FOV
2 Likes