Initializers on Vexcode

There are several issues that appear in your code.
First one is semicolon after main, it should be int main() {
The second is you may need to tell motors desired spin velocity.
Third, you need to tell motors to stop when no buttons is pressed.

   else if( Controller1.ButtonL1.pressing() )
   {
      Arm.spin(forward, 70, pct); // at 70%
   }
   else if( Controller1.ButtonL2.pressing() )
   {
      Arm.spin(reverse, 50, pct); // at 50%
   }
   else 
   {
      Arm.stop(hold); // hold arm in place
   }

motor.stop() reference: VEX Help