Volt

getsignalwhitelist

Gets the list of signals in the network whitelist filter.

Syntax

getsignalwhitelist() -> table

Returns

TypeDescription
tableArray 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:

FieldTypeDescription
EventstringThe name of the event/signal
ParentstringThe 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))
end

Use Cases

  • Determining which signals can be replicated
  • Understanding network security boundaries
  • Debugging replication issues

On this page