Hello, how to enable this script after the mouse click /touch ? :3
using UnityEngine;
using System.Collections;
public class yuniti : MonoBehaviour
{
void OnTriggerEnter2D(Collider2D col)
{
{
if (col.gameObject.tag == "frufii")
{
Destroy(col.gameObject);
}
}
}
}