Well its at 20 lines cause I added two more colors....
WHO CREATES A PAINT PROGRAM WITHOUT BLACK???
do:if exe=0:ink RGB(255,255,255),0:Box 0,0,screen width(),screen height():exe=1:endif:ink RGB(192,192,192),0:box 0,0,screen width(),15:ink RGB(0,0,0),0:set cursor 0,0:Print "File Color Stamps"
if mousex()>0 and mousex()<33 and mousey()<15 and mouseclick()=1:menu=1:endif:if mousex()>69 and mousex()<112 and mousey()<15 and mouseclick()=1:menu=2:endif if mousex()>150 and mousex()<202 and mousey()<15 and mouseclick()=1:menu=3:endif
if menu=1:ink RGB(192,192,192),0:box 0,15,100,100:ink 0,0:text 0,16,"New":text 0,31,"Exit"
if mousex()<100 and mousey()>15 and mousey()<30 and mouseclick()=1:exe=0:endif
if mousex()<100 and mousey()>31 and mousey()<46 and mouseclick()=1:exit:end:endif:endif
if menu=2:ink RGB(192,192,192),0:box 69,15,169,100:ink 0,0:text 69,16,"Red":text 69,31,"Blue":text 69,46,"Green":text 69,61 ,"Black":text 69,76,"Brown"
if mousex()>69 and mousex()<169 and mousey()>15 and mousey()<30 and mouseclick()=1:c1=255:c2=0:c3=0:endif
if mousex()>69 and mousex()<169 and mousey()>31 and mousey()<46 and mouseclick()=1:c1=0:c2=0:c3=255:endif
if mousex()>69 and mousex()<169 and mousey()>47 and mousey()<62 and mouseclick()=1:c1=0:c2=255:c3=0:endif:
if mousex()>69 and mousex()<169 and mousey()>63 and mousey()<79 and mouseclick()=1:c1=0:c2=0:c3=0:endif
if mousex()>69 and mousex()<169 and mousey()>79 and mousey()<95 and mouseclick()=1:c1=180:c2=113:c3=66:endif:endif
if menu=3:ink RGB(192,192,192),0:box 150,15,250,100:ink 0,0:text 150,16,"Circle":text 150,31,"Box":text 150,46,"Hello":text 150,61,"Pencil":text 150,78,"TONTRTA"
if mousex()>150 and mousex()<250 and mousey()>15 and mousey()<30 and mouseclick()=1:special=1:endif
if mousex()>150 and mousex()<250 and mousey()>31 and mousey()<46 and mouseclick()=1:special=2:endif
if mousex()>150 and mousex()<250 and mousey()>47 and mousey()<62 and mouseclick()=1:special=3:endif
if mousex()>150 and mousex()<250 and mousey()>63 and mousey()<78 and mouseclick()=1:special=0:endif
If mousex()>150 and mousex()<250 and mousey()>78 and mousey()<91 and mouseclick()=1:special=4:endif:endif
if mousey()>101 and mouseclick()=1:menu=0:ink RGB(255,255,255),0:box 0,15,screen width(),100:endif
if menu=0 and mouseclick()=1:ink RGB(c1,c2,c3),0:If special=0:dot mousex(),mousey():endif:if special=1:circle mousex(),mousey(),5:endif
if special=2:box mousex()-3,mousey()-3,mousex()+3,mousey()+3:endif:if special=3:text mousex(),mousey(),"HELLO":endif:If special=4:text mousex(),mousey(),"The One Noob To Rule Them All":endif:endif:loop