Advertisement
artbarte

Print Remotes

May 11th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function g(o)
  2. for i,v in pairs(o:children())do
  3. if string.match(v.ClassName, "Remote") then
  4. print("Name: "..v.Name.." | ".."Class: "..v.ClassName.." | ".."Location: ".."game."..v:GetFullName())
  5. end
  6. g(v)
  7. end
  8. end
  9. pcall(g,game)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement