Check this, it is in the top of your script:
module LAZY_LEVELUP_CONFIG
GRAPHICS = "nicelogo.png"
SWITCH = 1
end
Currently the path to the graphics is just nicelogo.png
That means the root folder of your game, where your graphics folder is, your audio folder is and where game.exe is. If you want to use for example the Pictures folder, you must change it to this:
module LAZY_LEVELUP_CONFIG
GRAPHICS = "Graphics/Pictures/nicelogo.png"
SWITCH = 1
end
And of course change nicelogo.png to the name of your image.