void OnCollisionEnter2D(Collision2D other) { if (other.gameObject.tag == "Player") { Destroy(this.gameObject); FuelManager.FuelUp(); } }