MangaReader/GuiManager/Misc/isDescendant.int
2020-02-10 17:18:21 -05:00

9 lines
159 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