help with my line guiding robot with 5 ir line tracking sensors plzz

R_LT=LOW

I'd guess right there.

When posting code, please use a code box by clicking on the # icon on the editor's toolbar, and pasting your code between the tags.
You can (and should) go back to your post, click on "modify", highlight your code, then click on the # icon on the toolbar, then click "save".

Why is "setup" empty?

Your code could be considerably simpler if you took the time to combine the individual bits read into numbers, either using "bitWrite" or mask and shift operations.

  if(M1_EN==0)
    analogWrite(EN1,LOW);
  else
    analogWrite(EN1,M1_EN);

That's a bit verbose; lose the "if/else" and just write M1_EN to EN1.