Executing a script after another

I need to execute two scripts in a precise order. The first one is the Locomotion script, after I need to override what locomotion did with an IK script. The problem is that both works during the LateUpdate and I’d like to avoid to couple the two scripts sending messages between them to synchronize their execution.
Is there a way to give scripts a priority?

Thanks!

Yes. It is called Script Execution Order.

How about moving the contents of the second script to another function, which you will call in the first script’s late update?