My First Game displays grey screen when playing scene

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Dugnutt

I’ve looked at other questions asked in a similar vein. I’ve tried changing the resolution and from fullscreen to borderless, and tried changing which scene is actually playing in the project settings. Any assistance would be super appreciated! I went through my code, no problems as I even copy pasted the correct one over top to be sure.

Here's what I'm looking at.

Are you sure you’re playing the Scene which is not empty ? Sounds like you’re playing an empty scene. Maybe you selected an empty scene as main Scene and you’re playing that ?

Scavex | 2021-01-06 08:43

:bust_in_silhouette: Reply From: egore

Did you you include a camera in your scene? If you scene is lacking a camera, Godot will only render a grey screen.

:bust_in_silhouette: Reply From: 1shevelov

Another possibility is that you forget to add_child(new_scene) when calling it from the main scene.
If that is true, I’d suggest you to learn more following some tutorial on Youtube, cause you are going to face more of these situations when you don’t know what’s happening. You’ll need broader knowledge of how Godot works.