getsignalwhitelist
Gets the list of signals in the network whitelist filter.
Syntax
getsignalwhitelist() -> tableReturns
| Type | Description |
|---|---|
table | Array of whitelisted signal information |
Description
getsignalwhitelist returns information about signals that are in Roblox's strict network filter whitelist. These are signals that are allowed to replicate to the server.
Return Structure
Each entry in the returned array contains:
| Field | Type | Description |
|---|---|---|
Event | string | The name of the event/signal |
Parent | string | The class that owns the signal |
Example
local whitelist = getsignalwhitelist()
for i, entry in ipairs(whitelist) do
print(string.format("%s.%s", entry.Parent, entry.Event))
endUse Cases
- Determining which signals can be replicated
- Understanding network security boundaries
- Debugging replication issues
Related Functions
replicatesignal- Fire with replicationcansignalreplicate- Check if signal can replicate