K
Docs
API ReferencePiecesFollow-up
↩️

Follow-up

base.followupBase SetMessages

Sends an additional message under the same slash command. Discord only allows one initial reply per spell — use Reply for the first message, then Follow-up for every message after.

When to use this
  • Always put a Reply piece first — Follow-up cannot be the only message piece on a spell
  • Chain multiple Follow-up pieces to send three or more messages
  • Check "only they can see it" for private follow-ups

On the canvas

This is what Follow-up looks like when you place it on your flow. Each field below is something you configure in the inspector panel.

↩️
Follow-up
base.followup
Messages
contentrequired
e.g. "Here are your stats…"
ephemeral
boolean

Config fields

FieldTypeReqWhat it does
content
e.g. "Here are your stats…"
textareayesWhat to say 💬
ephemeralbooleanOnly they can see it 🤫

Output ports

outputMoves to the next piece after the follow-up goes out
📐

In TypeScript, this would be…

Not something you need to write — just a look at what Kitcord does for you.

TypeScript
// Discord only allows one initial Reply on a Spell.
// Use Follow-up to send additional messages under the same slash command:
await interaction.followUp({ content: "Here are your stats…", ephemeral: false });