I have a question about the two aforementioned functions listed in the topic as it relates to calling them on the client, do they always wait for all the particular children or descendants to be loaded, or return a list of the ones that are loaded. I’m using these functions in replicated storage to write a custom require function that allows me load a module from its name. It works fine now but I just wanted to ensure that all the descendants will always be available on the client. I tried searching but could not get any results. I also checked out the nevemore engine by quenty and he used the same method for extracting the modules but I would like to get a second opinion.
GetDescendents get all the children in childrens inside the parts
meaning if you have Model > Part > Part2
when u use getdescendents, you will get Part and Part2 in the table instance given
and no they dont wait, they get the current children that exists
1 Like
I know what they do and you do not only use them for parts you can used them on anything capable of holding other instances. Also, i’m not talking about things parented in the workspace.
I got a solution from the quenty he said that it will return all instances.