So I have the basic code that removes all children from a node:
for child in get_node("PanelCarry").get_children():
child.queue_free()
Normally this works just fine for me how every now it is not removing any of the children. Behind the scenes the children I am trying to queue free are instanced in by code however this has never been a problem for me. As for any other crazy things going on there is none that should ever effect this. Thank you for any answers