Scene always displaying on editor.

Godot Version

6.4.1 stable

Question

I created i new scene to display my dialog system and have put it as an autoload. Now it is ALWAYS showing that scene even when the game is not running. It’s even strange because i can use the editor with the keyboard, but i can’t click on anything.

I tried reloading godot, rebooting my PC and re-downloading godot, but nothing worked.

Sounds like an issue with an addon you have.
Try to open your script files with something like notepad on Windows and remove the @tool keyword from them so they no longer execute inside the editor, then open your project again.

THANK YOU SO MUCH!!!

I was just follow a tutorial around yt and he put it at the beginning of the script, but i still don’t know what it does. Thank you!!

Tool scripts are very powerful, to run scripts in the editor not only at runtime, it’s worth to read about them.

I’ll take a look at it. Ty!