I have this script
function Update ()
{
if (Input.GetButtonDown ("Jump")) ;
{
Destroy(gameObject.Find("movingplatform"));
}
}
To my limited knowledge this script should work but unity keeps giving me this error.
BCE0044: expecting :, found ‘;’.
I could just be missing something obvious but i’m stumped ![]()