Serial Transmission Suddenly Gets Delay

Nobody here advised you to print each of your values on a separate line.

All that was suggested was to achieve EXACTLY the same as you are doing but without using String functions.

So, Serial.print(value);
Serial.print(" , ");
Serial.print(value2);
etc etc etc, all on the same line

Processing won't know the difference.

...R