create gameobject with script unity code example
Example 1: unity create gameobject
// Use 'new GameObject' to create a new GameObject in the current scene
SpawnedObject = new GameObject("Created GameObject");
Example 2: create new gameobject unity
// Create GameObject with the name "name".
GameObject newLocation = new GameObject("name");