Mil_Dev

nah

Nov 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function getem(o)
  2. for i,v in pairs(o:children())do
  3. if string.match(v.ClassName, "RemoteEvent") or string.match(v.ClassName, "RemoteFunction") then
  4. print("Name: "..v.Name.." | ".."Type: "..v.ClassName.." | ".."Location: ".."game."..v:GetFullName())
  5. end
  6. getem(v)
  7. end
  8. end
  9. pcall(getem,game)
Add Comment
Please, Sign In to add comment