Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ 28/1/2020, BY KONETHORIX
- mom: we have dex explorer at home
- dex explorer at home:
- ]]--
- local root = -- HERE
- function DEX(num, p)
- for i,v in pairs(p:GetChildren()) do
- local output = ""
- for x = 1,num do
- output = output .. "- "
- end
- output = output .. v.Name .. ": " .. v.ClassName
- print(output)
- DEX(num+1, v)
- end
- end
- DEX(0, root)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement