Skip to main content

Delete Chat Message

The Delete Chat Message effect removes a specific message from your Twitch chat. It accepts a Message object (not a plain string) and deletes that exact message from the chat window.

This node is most commonly connected to a Chat Command trigger's Message output so that the command message itself is cleaned up after the flow processes it. This keeps your chat tidy by removing command invocations that viewers don't need to see.

Inputs

NameTypeDescription
MessageMessageThe chat message object to delete. Typically comes from a Chat Command trigger's Message output.

Example

You have a !secret command that should work silently. Connect the Chat Command trigger's Message output to a Delete Chat Message effect so the command is removed from chat as soon as it is processed. The flow can still perform other actions (like sending a whisper or updating a variable) without the command being visible to other viewers.