Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Hello! This is similar to Autumn's RemoteSpy, except it finds all remotes in Workspace and ReplicatedStorage (where they're generally kept, but you can modify it if you want). To use simply run the script then check the f9 console in game for the full location of the event. Each section is labeled with a warn and a separator.
- -- Made by Kai (Avion)
- -- Tysm Clv and MasterKelvinVIP for helping me make and revise
- local ToFind = {
- RemoteFunction = true,
- RemoteEvent = true,
- BindableFunction = true,
- BindableEvent = true
- }
- local Found = {}
- local function Search(Parent, Arguments)
- Parent = Parent:GetChildren()
- for index, child in next, Parent do
- for class in next, Arguments do
- if child.ClassName == class then
- if Found[class] then
- local Directory = Found[class]
- Found[class][#Directory + 1] = child
- else
- Found[class] = {child}
- end
- end
- end
- if #Parent > 0 then
- Search(child, Arguments)
- end
- end
- end
- Search(workspace, ToFind)
- Search(game:GetService("ReplicatedStorage"), ToFind)
- for index, value in next, Found do
- warn(index .. "(s)")
- for _, child in next, value do
- print(child:GetFullName())
- end
- warn("End of " .. index .. "(s)")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement