void Update()
{
string thisTag = "ExampleTag";
GameObject someObject = GameObject.FindGameObjectWithTag(thisTag);
if(someObject != null) Debug.Log("Object With This Tag Exists");
else Debug.Log("No Object With This Tag Exists Currently");
}