What does true
do to this line of code?
local Neck = Character:FindFirstChild("Neck", true)
What does true
do to this line of code?
local Neck = Character:FindFirstChild("Neck", true)
It makes it search for descendants too, not just children.
Basically it searches for the children, the children of those children and more.
Search for all children with the given name and return the first one.
Search for all children with the given name. Return the first one if it exists. Otherwise, search all children of children and repeat the process.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.