RandomNewbieScripter

Untitled

Aug 27th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. for i,v in next, game:service'Players':players() do
  2. for _,g in next, v:children() do
  3. if g:IsA"PlayerGui" then
  4. local list = {}
  5. for _, l in next, g:children() do
  6. table.insert(list,l.Name)
  7. end
  8. warn(v.Name.."      "..table.concat(list, "  "))
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment