It is OK to learn how the signal connect things works with the visible notifier, thanks.
But, as long as the rocket only goes from left to right, maybe it is simpler to do just a position check?
func _process(delta):
var width = get_viewport_rect().size.x
if (global_position.x >= width + 100):
queue_free()
Thanks!