Says I'm missing a semi-colon... But I really don't think I am...

float scriptDelayAmount = 3f; 
float scriptDelayLastTime;
var newObject : Transform;

function Update () 
{
    if( Input.GetButtonDown("Fire1") )
    {
      scriptDelayLastTime = Time.time + scriptDelayAmount;
    }
   if( scriptDelayLastTime < Time.time )
   {
        animation.CrossFade("Take 001");
        Instantiate(newObject, transform.position, transform.rotation);
   }
}

Says I need a semi-colon on lines 1 and 2 at column 6...

Anything?

Thanks, Justin

Nevermind, I got it... I'm really dumb...

If anyone else gets this, check:

var scriptDelayAmount : float = 3.0f;
var scriptDelayLastTime : float ;
var newObject : Transform;