animation on key press problem

im trying to play an animation when i press space, but when i start the game it just starts and loops the animation…the wrap mode is at once and Play Auto is off…here is the script im using.`

function Start () {

}

function Update () {
if(Input.GetButtonDown(“Jump”));
animation.Play(“engines landingtakingoff”);
}
`

Ive also tried GetButton.

Use this :slight_smile:

function Update () {
   if(Input.GetButtonDown("Jump"))
      animation.Play("engines landingtakingoff");
}