void OnTriggerEnter2D(Collider2D other) { if (other.tag == "Player") { Death.addLife(); Destroy(gameObject); } }