Advertisement
Guest User

RemoteEvent Finder

a guest
Nov 17th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. for i,v in pairs(game:GetDescendants()) do
  2. if v:IsA("RemoteFunction") then
  3. print(print(i .. " " .. v:GetFullName()))
  4. end end
  5.  
  6. for i,v in pairs(game:GetDescendants()) do
  7. if v:IsA("RemoteEvent") then
  8. print(print(i .. " " .. v:GetFullName()))
  9. end end
  10.  
  11. print(game.Workspace.FilteringEnabled)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement