How to Switch Scenes in Godot
For this example, we start by creating two scenes. We shall name them 'Scene 1' and 'Scene 2'. Just to keep things sorted out, add a label to each scene and have them display the text 'scene 1' and 'scene 2'. Now here is where things get wild. We will add a button to scene 1. Then attach the following signal script to scene 1. func _on_button_pressed() -> void: get_tree().change_scene_to_file("res://scene_2.tscn") Now when you run the game and click the button, we jump to scene 2. And we are done folks.