Arduino & Continous Rotation Servos

without seeing the code that you have working I can only guess based on what you posted before.

You have to initialize another servo:

Servo motor2;

Then initialize it to the pin of the second motor, something like this (assuming this code works for your first servo

void setup() {
motor2.attach(XX); // where XX is the pin of the other servo.
for(int t=0;t<=3000;t += 1000){
motor.write(80);
}
}
void loop(){
}