change body offset on virtual camera

I am trying change the body Y offset of a virtual camera in script, but can’t seem to find how to get a script reference to the circled [134902-capture.|134902]

Can’t seem to find a script reference for virtual camera

This was script I tried, a whole bunch of different ways.
float changeCameraHeight = Input.GetAxis(“RightAnalogVertical”);
followCamera.Follow.position = new Vector3(followCamera.transform.position.x, followCamera.transform.position.y + changeCameraHeight, followCamera.transform.position.z);

That was exactly what I was looking for. Thanks @highpockets