ClientSide says Model have children but localscript says dont have children ? What

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

image

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 :confused:

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