Ryan 204966f929 Added Files
Totally not ready
2017-06-10 17:10:46 -04:00

9 lines
155 B
Plaintext

function gui:isDescendant(obj)
local things=obj:GetAllChildren()
for i=1,#things do
if things[i]==self then
return true
end
end
return false
end