perchč questo script non mi crea 12 clip?

codice:
s=0;
_root.onEnterFrame = function() {
    nome="a"+s;
     duplicateMovieClip("a1",nome,0);
	_root[nome]._x = 7.5;
	_root[nome]._y = s * 2;
    
	s<13 ? s++ : delete this.onEnterFrame;
};