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

14 lines
261 B
Plaintext

function gui:eventable()
if self.important then
return true
end
if _GuiPro.Hierarchy then
if _GuiPro.TopHovered~=nil then
return self:isDescendant(_GuiPro.TopHovered) or _GuiPro.TopHovered==self
else
return true
end
else
return true
end
end