of     1   

Spxders
#186271272Monday, March 28, 2016 9:57 PM GMT

I think this maybe the section to ask for help but when i search for something in the explorer, I cant access its children, why is this?
TimeTicks
#186271345Monday, March 28, 2016 9:58 PM GMT

Can you explain more on what you are trying to do? Or upload an image for us to see?
AggressiveCatch
#186271358Monday, March 28, 2016 9:58 PM GMT

what do you mean search for?
Spxders
#186271737Monday, March 28, 2016 10:03 PM GMT

In studio in your workspace there is a search, say you have a spawn location with a decal, if you search "spawn" you cant access the spawn locations children like the decal.
TimeTicks
#186272291Monday, March 28, 2016 10:11 PM GMT

Use a recursive function. find = function(object) for i,v in next, object:GetChildren() do if v:IsA("Decal") then print("Found a decal") end find(v) end end find(workspace)

    of     1