Universal Script πŸ“Œ
23.7k Views
Free

Remote Event Scanner

Universal Script πŸ“ŒUploaded by
2 years ago
Please login to perform these actions:

Description

Scans the Workspace, ReplicatedStorage, and ReplicatedFirst for all RemoteEvents present in the game. For each discovered RemoteEvent, the script prints its complete path to the output console, offering an organized view of where each event is located. btw I got the idea to do this from @vxsty he came up with Leaderstat Finder so i wanted to so remote finder so shout out to him https://scriptblox.com/script/Universal-Script-Leaderstat-Finder-7277

View Raw
Edited By: Aura Download


Comments
4
User profile picture
ExunysVerified
Verified Badge
Verified User
2 years ago - Edited
Here's an even simpler and more efficient one: for _, Value in next, game:GetDescendants() do if Value:IsA("RemoteEvent") then print(Value:GetFullName()) end end
User profile picture
wtt45 2 years ago - Edited
messy code ```for i, e in pairs(game:GetDescendants()) do if e:IsA("RemoteEvent") then print(e:GetFullName()) end end```
User profile picture
Aura 2 years ago - Edited
@Exunys Thanks
User profile picture
vxstyVerified
Verified Badge
Verified User
2 years ago - Edited
Thanks for the credit!, Was planning on making a remoteevent and remotefunction finder but I didn't know this was a thing, Mind if I create something similar ofc I will credit you?
Please Login to add a comment.