Hmmm, it seems you need some unerstanding where the Python controller is in a game loop…
All triggered controller are executed exactly ones within one logic run. If you “delay” one controller your delay the frame (loop run) and produce a lag.
If you want to load one object in one frame, you just need a python controller that loads exactly one object. The next run it loads the next object and so on.