place gameobject with script unity code example
Example 1: Unity C# instantiate prefab
Instantiate(myPrefab, new Vector3(0, 0, 0), Quaternion.identity);
Example 2: unity create gameobject
// Use 'new GameObject' to create a new GameObject in the current scene
SpawnedObject = new GameObject("Created GameObject");
Example 3: unity instantiate prefab
Instantiate(cube, Vector3 (x, y, 0), Quaternion.identity);
Example 4: how to add a gameobject
/// <summary>
/// Creates a new Gameobject called Name_1
/// </summary>
public void AddGameObject()
{
GameObject testObject = new GameObject("Name_1");
}