I supposed you have two buttons, one for up action and another for down action.
The code here seems not correct because it just "Jump", not calling routine.
LOOP:
IF PBUP = 0 THEN UPP
IF PBDN = 0 THEN DNN
PAUSE 50
GOSUB ACTIONS:
GOTO LOOP
I supposed what you want may be this.
LOOP:
IF PBUP = 0 THEN GOSUB UPP
IF PBDN = 0 THEN GOSUB DNN
PAUSE 50
GOSUB ACTIONS:
GOTO LOOP
'**************************
UPP:
IF SEQ >= 7 THEN RRT
SEQ = SEQ + 1
PAUSE 50
GOTO RRT
DNN:
IF SEQ <= 1 THEN RRT
SEQ = SEQ - 1
PAUSE 50
RRT : RETURN
1. Without the "GOSUB", your code won't return properly.
2. Seems you are doing actions based on SEQ from 1 to 7, the original "UPP" and "DNN" actions may be wrong.
Do you confirm your code writing into chip and running?