using System; using UnityEngine; public class Black_Hole : MonoBehaviour { void Start() { } private void OnTriggerEnter(Collider other) { Destroy(other.gameObject); } }