Skip to main content

Is Broadcaster

The Is Broadcaster check determines whether the user who triggered the flow is the broadcaster -- that is, the owner of the channel. This is the most restrictive role check available, since only one person can be the broadcaster.

Use this when you want to create commands or actions that only you (the streamer) can activate. The user data passes through to whichever output path matches, so you can continue using it in subsequent nodes.

Inputs

NameTypeDescription
UserUserThe user to check.

Outputs

NameTypeDescription
TrueUserThe user, if they are the broadcaster.
FalseUserThe user, if they are not the broadcaster.

Example

Use the Is Broadcaster check after a Chat Command trigger for a !restart command. Only the broadcaster will proceed down the True path to execute a stream restart action, while everyone else is routed to the False path (which you can leave disconnected, or connect to a "permission denied" chat message).