How to make particle ball disappear when hit a player ? not all balls, just the one that hit player object.
Public float balls;
void OnParticleCollision(GameObject other) {
if (other.CompareTag("Player")) {
gameObject.SetActive(false);
balls += 1;
}
}

