using System.Collections; using System.Collections.Generic; using UnityEngine; public class SpikyBall : MonoBehaviour{ void OnTriggerEnter2D(Collider2D col){ if(col.gameObject.tag == "BallDestroyer"){ Destroy(gameObject); } } }