Can someone fix this? it's so simplem that i can't see how it could not work.

var EnemyPrefab:Transform;

function Update () {

if(Input.GetButtonUp("Jump"))
{
var Enemy = Instantiate(GameObject.Find("MSBoD"), GameObject.find("Spawnpoint").transform.position, Quaternion.identity);
}

}

It works, thanks