The problem is you are trying to change scenes using a string and not a resource path pointing to a scene file.
Assuming you have set next_world in the editor, then all you should need to do is change the line that reads get_tree().change_scene("next_world") to get_tree().change_scene(next_world) and it should work. :smile: