Multiple Actions/Threads On One Load Command

Hello! I" sorry if this is a dumb question but I'm trying to have multiple commands on load but every time i have more than one "on load" command it tells me I can only have one. If you can comment with a solution please do!

Make the load function call other functions:

on load do
call “load2”
//do this load’s work
end

on load2 do
call “load3”
//do this load’s work
end

on load3 do
//do this load’s work
end

Also, take note you can do many things inside of one load function.

Thanks! I was really stuck here! Just to confirm I can make it go on and on like load 4 load 5 etc. right?

Yes, theoretically till the play date can’t handle it.