Parallelization help

Hello! I’m unsure how to track the performance metrics of my parallelized scripts through the MicroProfiler and Script performance. I am using a version of A-Chassis that has been turned into a standalone chassis for my game. Since I wanted to improve the performance of the client side as much as possible, I thought of splitting up the tasks that the chassis has to do in order to update (Update steering, gears, engine calculations, and application of power).

I managed to grab a screenshot of the profiler where I found my script (VehicleController):
image

And I have a screenshot of the generalized code from the older script that runs completely in serial:
image

@ 240FPS Parallelized
image

@ 240FPS Old Serial
image

Script structure:
image

Hey,
you can use profilebegin and profileend in some parts of your script too see what parts take the most resources.

profilebegin
profileend

example: