How do i make Parallel run BEFORE Serial?

Usually i see people have their parallel code run before serial (ex:

)
however everytime i myself try to achieve such a result, my parallel code always runs AFTER serial and i have absolutely no clue why

I was told to use task.desync/sync but for some reasons it just does that instead

i found a weird fix
i just need to literally do

“task.desynchronize()
task.synchronize()”

in the main thread
for whatever reasons
nothing in between
just that
weird asf


image

Can’t you just do Heartbeat:ConnectParallel() instead of just connect?

uhhh that was for the main thread
i need the serial stuff to be in serial obviously

the parallel work you are seeing is already being done from ConnectParallel