void OnTriggerEnter(Collider col) { Debug.Log(col.tag); if (col.gameObject.tag == "Player") { Call.OnPause(); Destroy(gameObject); } }