I tried opening a new project
Code:
public class WhyYouNoWork extends SimpleRobot{
Joystick js = new Joystick(1);
Talon shooter = new Talon(1);
public void robotInit(){
}
public void autonomous(){
}
public void operatorControl(){
while(isOperatorControl() && isEnabled()){
if (js.getRawButton(11)){
shooter.set(1.0);
}
}
}