Unable to move two different motors at different times

Know that millis() start from 0 and advances endlessly.
Look at time being greater than 105000. Every if part will go active. That doesn't look like useful.
Use time intervals like if( time > this && time <= that) { do the action1; }