Parallel Luau Help with Determining Script Functions

Is there a way to tell if a certain script is running parallel or serial? I ask this because I don’t want to be accidently running a serial script when it was supposed to be a parallel script.

It can only be running in parallel if it is the child of an Actor instance, has called task.desynchronize() and hasn’t yet called synchronize(). Are you doing something where you don’t know where it is relative to these?

I just want to know if the current script is parallel or serial, such as if I missed to desync it or accidently created another thread that’s serial.