MPX5100 Pressure Sensor Not Reading Correctly

With a little algebra, and assuming that Vs = ADC reference = 5V,

float pressure = 111.11*(analogRead(pin)/1024. - 0.04);  //kPa

You can do better with custom calibration, if you have access to an accurate pressure gauge for comparison. Tutorial here.