Here's the code I have that's been giving me the problem:
PRINT ""
PRINT "1. Play solo"
PRINT "2. Play with one friend (coming soon)"
PRINT "3. Play with two friends (also coming soon)"
PRINT "4. Get outta here"
5 DO
IF INKEY$ = CHR$(128) + CHR$(2) THEN CALL solo
IF INKEY$ = CHR$(128) + CHR$(3) OR INKEY$ = CHR$(128) + CHR$(4) THEN
PRINT "Sorry, cannot do that"
PLAY "01L2f"
GOTO 5
END IF
IF INKEY$ = CHR$(128) + CHR$(5) THEN CALL ending
LOOP WHILE INKEY$ = ""
END SUB
SUB solo
CLS
RANDOMIZE TIMER
a = INT((12 - 6 + 1) + RND * 6)
PRINT "Right now you hope to get the"
PRINT "most money out of your given spins."
I imcluded the first several lines so that you won't get an error message from it.