Do server sided scripts wait for the entire model to load in before executing?
Like, if I cloned in a model with a script inside, would it only execute after the model is fully loaded in?
Do server sided scripts wait for the entire model to load in before executing?
Like, if I cloned in a model with a script inside, would it only execute after the model is fully loaded in?
No, as far as I know they don’t. The solution to this is just using :WaitForChild()
Yes. Server scripts start running after all assets are loaded (including when it’s cloned in a model). You do not need to use WaitForChild
for assets that are already there in studio or the cloned model.