The problem is, after using the fadeout command, the text color goes black, too.
Is your game using the palette (256-color) mode?
If yes, you can type something like this, to restore the text color:
Code: ags
Is your game using the palette (256-color) mode?
If yes, you can type something like this, to restore the text color:
palette[15].r=63;
palette[15].g=63;
palette[15].b=63;
updatepalette();