You could make this code smaller by using FOR loops:
'Set up sprites SPSET 13,72 SPSET 14,69 SPSET 15,76 SPSET 16,76 SPSET 17,79 'Put sprites in correct place FOR I=0 TO 4 SPOFS I+13,10+(I*8),156,-100 NEXT IIf you want larger fonts, you can use the GPUTCHR command, like this:
GPUTCHR 0,0,"BIG TEXT!!!",2,2,#WHITE GPUTCHR 0,32,"WIDE TEXT!!!",2,1,#WHITE GPUTCHR 0,64,"TALL TEXT!!!",1,2,#WHITE