-- LocalScript
workspace.ChildAdded:Connect(function(child) -- child is DropBox
print(child.Name) -- DropBox
print(child:GetChildren()) -- {}
end

why?
-- LocalScript
workspace.ChildAdded:Connect(function(child) -- child is DropBox
print(child.Name) -- DropBox
print(child:GetChildren()) -- {}
end

why?
Not to be dumb here Did you click on the arrow that’s supposed to show the table in the Output?
yes. I am not dumb bro ![]()
Maybe try adding a wait() inbetween the 2 print statements?
-- LocalScript
workspace.ChildAdded:Connect(function(child) -- child is DropBox
print(child.Name) -- DropBox
wait(1)
print(child:GetChildren()) -- {}
end
It seems as if the children didn’t load yet, and only the model loaded at this point.
I found answer. the children didn’t load yet in Model. so says empty
I tried it then it worked. Thanks