onTrigriceRenter
void OnTriggerEnter (Collider other) //Make sure to put this out of Voids
{
if (other.gameObject.tag == "Object")
{
Debug.Log ("Collided");
}
Am coder