I have several Remote Events and I would like to check where these remote events are being used. Is there any way to check object dependencies?
There doesn’t seem to be a built in way of doing so. Your next best option is to track it manually.
You can save RBXScriptSignal’s you get from OnServerEvent and OnClientEvent in a table to see if it’s being used. If you do that, you can also force disconnect the signal.
As far as where to place these tables, you could put it in a global table if you’d like or a ModuleScript.
2 Likes
As @Ninja_Deer mentioned, there isn’t an official way to detect where remote events are being used
1 Like