In the first clip, I use this. It doesn’t detect child added.
for i,v in pairs(workspace:GetDescendants()) do
v.ChildAdded:Connect(function(child)
print(child)
end)
end
In the second clip (0:20), I use this, however I’m only detecting the workspace child added, so if I add a child in anything not the workspace, it doesn’t detect it.
oh yeah and I also said that it detects if if I do workspace child added, so yes it does work just not with for loops for some reason but i want to fix that
Ohh, it’s because for .ChildAdded, you aren’t adding anything into the instances already there.
If you want to detect when Descendants of workspace are added, use workspace.DescendantAdded.