can I run 2 scripts at the same time?

and if 1 script get stuck it won’t affect the 2nd one that is running?

so if I have this kind of script:

:log warning "start"
/system script run script1;
/system script run script2;
:log warning "Done";

if something is not good in script1 it will get stuck and won’t run script2
how can I make it go to script2 no matter what is the status of script1?

Thanks ,

I have called another script from within a script before such as to define variables. But I think in your case, the best practice is to have separate schedules that fire off the separate scripts. it is cleaner and easier to troubleshoot this way.