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

10 lines
215 B
Plaintext

function gui:BottomStack()
childs=self.Parent:getChildren()
for i=1,#childs do
if childs[i]==self then
table.remove(self.Parent.Children,i)
table.insert(self.Parent.Children,1,self)
break
end
end
end