Hi, okay, in that case, this will get you started:
1) Add a slider control to your null layer.
2) Add this expression to the position of each layer that you want to have move:
transform.position+ thisComp.layer("Null 1").transform.position.valueAtTime(time-index/(1+thisComp.layer("Null 1").effect("Slider Control")("Slider")))
Note that this expression expects that you null is named “Null 1”. If not, change either the name or the expression.
Use the slider to control how fast the consecutive layers follow the null. (1 = 1 second delay for each layer, 10 = 1/10th second delay, etc.)
Put the layers you want to move at the very top of the layer stack so that the indices start from 1. (If for some reason that is not possible, deduct the number of layers above the first layer you want to have move from the index number in the expression.)