Beginner question about Vibe motor and force sensor and LEDs

I'm thinking this will work?

Are you, or aren't you?

Which Arduino has 17 analog pins?

if (fsrReading <10) {
  analogWrite(HIGH, LEDpin);
}
if (fsrReading <10) {
  digitalWrite(HIGH, Vibepin); 
}

You can do more than one thing in the body of an if statement.

You should post some details about this vibe motor BEFORE you destroy your Arduino. It is not meant to power motors directly.

  pinMode(fsrAnalogPin, INPUT); 
 fsrReading = analogRead(fsrAnalogPin);

These statements don't go together. Analog pins are input only. The pinMode() function doesn't do anything for analog pins. It will set the digital part of that pin to input, but that is not necessary when using it as an analog pin.