Program Help

Hello, so I am super close for finishing my button program. The only problem that I am having is when I am pushing the 5U or 5D button, the base will not move while I am holding the button. Here is my program, any suggestions are awesome thank you.

task main()
{
while(true)
{
if(vexRT[Btn6U]== 1)
{
motor[middleliftleft] = -127;
motor[middleliftright] = -127;
motor[rightlift] = -127;
motor[leftlift] = -127;
motor[toprightlift] = -127;
motor[topleftlift] = -127;

	}
	else if (vexRT[Btn6D] == 1)
	{
		motor[middleliftleft] = 127;
		motor[middleliftright] = 127;
		motor[rightlift] = 127;
		motor[leftlift] = 127;
		motor[toprightlift] = 127;
		motor[topleftlift] = 127;
	}
	else
	{
		motor[middleliftleft] = 0;
		motor[middleliftright] = 0;
		motor[rightlift] = 0;
		motor[leftlift] = 0;
		motor[toprightlift] = 0;
		motor[topleftlift] = 0;
	}
	if(vexRT[Btn5U]== 1)
	{
		motor[rightleftclaw] = -127;

	}
	else if (vexRT[Btn5D] == 1)
	{
		motor[rightleftclaw] = 127;

	}
	else
	{
		motor[rightleftclaw] = 0;
		
		motor[leftfrontbase]=vexRT[Ch3];
		motor[leftbackbase]=vexRT[Ch3];
		motor[rightsideofbase]=vexRT[Ch2];
	}
}

}

Your base code got stuck in the else statement for you claw. Move that curly bracket below motor[rightsideofbase]=vexRT[Ch2]; to below motor[rightleftclaw] = 0; and it should work fine.

Ok thank you for your help creatorthomas.