using System.Collections; using System.Collections.Generic; using UnityEngine; public class GooClense : MonoBehaviour { void OnTriggerEnter2D(Collider2D collision) { if (collision.gameObject.CompareTag("Player")) //if the player collides with a virus, destroy the virus { Destroy(gameObject); } } }