I'm having trouble trying to make an image create the same image but in a position behind the image created.
`function Update () { if (Input.GetButtonDown("Fire1")) { Instantiate(newObject, transform.position-Vector3(0,0,0), transform.rotation); } }`
I'm new to unity and scripting so I've been using the tutorials to help. Yet when I click with the mouse a new image is created but it is just overlapping the current image.