extends Node var sprite = preload('res://enemie/monster.tscn') func _ready(): for i in 1024: var add = sprite.instance() add.z_index = 1 add_child(add) pass # Replace with function body.