• Godot Help2D
  • Button is not visible is not shown when I do test runs

I'm currently going through the Godot tutorials and I'm currently stuck. The tutorial I'm going through is the link below:
https://docs.godotengine.org/en/stable/getting_started/step_by_step/signals.html

I saw the following statement: "You can then run it with F6 (Cmd + R on macOS). At the moment, the button will be visible, but nothing will happen if you press it." However, when I do run it, I don't see anything. The script just starts to run in circles (which is intended, but the button never showed up to begin with):

Why is the button not showing?

    brainy19 The script just starts to run in circles (which is intended, but the button never showed up to begin with):

    This can happen if you are running the sprite_2d.tscn scene and not node_2d.tscn. For example, in the project settings you have specified sprite_2d.tscn as the main scene and run it through F5 (Run Project, not Run Current Scene F6).