VehicleSeat Camera

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    What I want was the vehicleSeat camera lock at the player’s zoom distance
  2. What is the issue? Include screenshots / videos if possible!
    The camera while riding a vehicle keep zooming out according to vehicle size
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I tried changing the camera type, but still not.
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
local cam = workspace.CurrentCamera

function everyFrameStepped()
	cam.CameraType = Enum.CameraType.Custom
	cam.CameraSubject = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Humanoid")
end

game["Run Service"].Stepped:Connect(everyFrameStepped)