This is a very simple question that I should probably know the answer to by now.
When using :WaitForChild(), does that mean that the children are loaded when :WaitForChild() finishes?
For example:
workspace:WaitForChild("objectA").objectB.objectC
Would objects B and C be loaded or do I have to do this:
workspace:WaitForChild("objectA"):WaitForChild("objectB"):WaitForChild("objectC")
Thanks!
(P.S. would this be the same for things in the player and the player’s character?)