Instantiation

Hi!

I am in a little trouble with the instantiation function, whatever parameters i give to it it instantiates objects at 0,0,0 also with default rotation(code is now quaternion.identity but its the same with other parameters)

i use this code in an iteration to place shapes near each other but they appear in the exact same spot

var test = Instantiate(shape,(Vector3 (-10+j*4+2,0,-10+i*4+2)),quaternion.identity);

any help qould be appreciated

Thanks in advance!

var test : Transform;

for (var i : int = 0;i < 10; i++) {
    Instantiate (test, Vector3(i * 2.0, 0, 0), Quaternion.identity);
}