I’ve always wondering. What is the true difference between wait for child, and find first child. I know that wait for child waits infinitely until it finds a child but will find first child do the same?
1 Like
No. Find first child is looking for an instance that has the name of what you put as the first argument. If there is no instance with the name, it returns nil. If there is an instance with the name given, then it will return the instance.
2 Likes
Ooooooh I see! So WaitForChild waits for it and find first child checks if there is a child with the certain name ok i got it!
Thank you!
1 Like