AutoCam position

Hi guys , i’m stuck in changing position of the MultipurposeCameraRig ( imported from unity packages )
!
here is the line in script of the camera position i want it up ( you can see the problem in the caption below ) :

 // camera position moves towards target position:



            transform.position = Vector3.Lerp(transform.position, m_Target.position, deltaTime*m_MoveSpeed);

Replace Vector3.Lerp with Vector3.MoveTowards. Lerp requires the last argument ‘t’ to be the fraction (between 0 and 1) of the whole distance between the two points. MoveTowards requires the last argument ‘maxDistanceDelta’ to be the actual distance (in metres) you want to move towards the end.