Logon scripts run concurrently.
The documentation you linked to suggests that scripts are run consecutively "processed in [...] order":
If you assign multiple scripts, the scripts are processed in the order that you specify. To move a script up in the list, click it, and then click Up. To move a script down in the list, click it, and then click Down.
The documentation is not clear on what "processed in [...] order" means, so I put together a little test. I wrote two scripts that log an event, sleep for five seconds, log another event and quit:
Set sh = WScript.CreateObject("WScript.Shell")
sh.LogEvent INFORMATION, "Hello from Script A"
WScript.Sleep 5000
sh.LogEvent INFORMATION, "Goodbye from Script A"
The other script is identical except the log messages say "Script B" instead.
I put both of these scripts on a GPO as logon scripts and applied the GPO. After policy refreshed and I logged on to the test computer, I checked the Event Viewer.
The result was that "Hello from Script A" and "Hello from Script B" were logged at the same time. Five seconds later, "Goodbye from Script A" and "Goodbye from Script B" were logged at the same time.
To be precise, the log entries were added in the same second, and the time resolution for these entries does not get into fractions of a second, so I am not sure which script wrote to the log first. Event viewer actually shows the logs from Script B before the logs from Script A, even though the timestamps are identical.
The verdict from this simple test:
Logon scripts run concurrently.