Click here and read this article in the Wiki with images

Execution Order is something that determines which script is after the current one. In Fancade we follow the execution order Top to Bottom, Left to Right (i.e. The way you read an English Paragraph)

Thus, a set of scrips arranged in the following order:

AB
CD
will be executed as A→B→C→D

That's helpful, but what if you want to modify it? Here comes Execution Wires. Those yellow wires at the top and bottom of some scripts named Before and After are what we call as Execution Wires. Execution Wires overrides the default Execution Order.

Once a script executes according to the default execution order, it'll execute all the scripts connected to it via Execution Wires before moving on the next script. A picture is worth a thousand words. So check these out:

Check out some common problems related to execution order here