Your Question isn't very clear but here something to consider.
Multi-Threading
Sudo code
var thread : Thread
thread = Thread.new()
thread.start(self, "LoadFiles", [thread, filesName]) #Can be an array of names
func Load(thread, filesName):
**Load Files**
thread.wait_to_finish()
You can read more about threads on the Godot documentation.