How do i add a new position to this script when clicked the first time go to that position, when clicked again go to a different position.
#pragma strict
function Update ()
{
if (Input.GetMouseButton(0))
{
Camera.main.transform.position = Vector3(51,3,0);
}
}