My issues comes within the loading file as the saving works fine, here is the code I am using to load a scene
var node_data = json.data
if node_data.has("currentscene"):
newscene = load(node_data["currentscene"])
await get_tree().process_frame
var new_object = load(node_data["filename"]).instantiate()
get_node(node_data["parent"]).add_child(new_object)
however when I attempt to load form the main menu it gives me this error, and I dont know how to fix it or how to properally load a save game from the main menu or from another scene
I really appreciate the help! If there is anything else that you need let me know,
My issue is I dont know how to get rid of the Main Menu and add the Protoype scene, and thena dd the updated children