void OnTriggerEnter(Collider other) { BallScript bs = other.GetComponent <BallScript> (); if (bs) { bs.Die(); bs.DieForReal(); } }