attach gameobject to inspector from custom editor code example
Example 1: unity change tag in script
gameObject.tag = "NewTagName"
Example 2: how to add a componet to a gameobject throgh code unity
//This uses C# and unity
//to add a ridgidbody
gameobject.addComponet<ridgidbody>();
//to add a meshCollider
gameobject.addComponet<MeshCollider>();
//check out my profile