of     1   

FishEye18
#184824411Sunday, March 06, 2016 12:04 AM GMT

print("Searching Game Objects") for item, v in pairs(game:GetChildren()) do print("Object Found: "..v.Name) print("Children Are:") for item, c in pairs(v:GetChildren()) do print("Child Object: "..c.Name) end print("End search of: "..v.Name) end I'm not sure why though, it isn't attempting to do anything other than print out names and children names.
AgentFirefox
Top 100 Poster
#184825804Sunday, March 06, 2016 12:28 AM GMT

Some services don't give you access to GetChildren IIRC. The Name property may also be giving you this error.

    of     1