BCE0020: An instance of type 'UnityEngine.Transform' is required to access non static member 'position'.

this is my script:
#pragma strict

var target : Transform;
var distance = -10;
var lift = 1.5;

function Update ()
{
Transform.position = target.position;
}

i get the error
Assets/CameraControl.js(9,15): BCE0020: An instance of type ‘UnityEngine.Transform’ is required to access non static member ‘position’.

Transform (uppercase) is a type, and transform (lowercase) is the transform/object instance. You need to spell Transform in lowercase: transform.position = target.position;

ty