void OnTriggerEnter(Collider other) { if (other.tag == "Boundary") { return; } Instantiate(explosion, transform.position, transform.rotation); if (other.tag == "Player") { Instantiate(explosion, transform.position, transform.rotation); gameController.Gameover(); } Destroy(other.gameObject); Destroy(gameObject); gameController.AddScore(scoreValue); }