How to get Raycast to fetch gameobject tag code example
Example: how to see a tag of what you hit with raycast
if (Physics.Raycast (transform.position, fwd, hit, Reach) && hit.transform.tag == "TagName") {
if (Physics.Raycast (transform.position, fwd, hit, Reach) && hit.transform.tag == "TagName") {