Help with making my prototype to work (SOLVED)

EDIT: Thanks for all help!

5396091–547452–Duplicate.cs (581 Bytes)

Try this:

using System.Collections;
using UnityEngine;

public class Duplicate : MonoBehaviour

{

    public GameObject SnowMan;
    public GameObject snowmanContainer;

    void Start()
    {
        Invoke("SnowManCreator", 30f);
    }

    void SnowManCreator()
    {
        GameObject SnowManClone = Instantiate(SnowMan, new Vector3(i * 0.6f, SnowMan.transform.position.y, i * 0.75f), SnowMan.transform.rotation);
    }
}