🎨
Send Embed
base.embedBase SetMessagesSends a fancy embed card with a title, body text, and accent color. Embeds stand out in chat and look way more polished than plain text. Great for leaderboards, announcements, and summaries.
When to use this
- →Use a hex color that matches your server's vibe
- →Embeds support markdown in the body — **bold**, > quotes, etc.
On the canvas
This is what Send Embed looks like when you place it on your flow. Each field below is something you configure in the inspector panel.
🎨Messages
Send Embed
base.embedtitle
🏆 Top Scores
description
Here are this week's top players...
color
#5B21B6 (any hex color)
Config fields
| Field | Type | Req | What it does |
|---|---|---|---|
title🏆 Top Scores | text | — | Title 📌 |
descriptionHere are this week's top players... | textarea | — | Body text 📝 |
color#5B21B6 (any hex color) | text | — | Accent color 🎨 |
Output ports
outputMoves on after the embed is sent
📐
In TypeScript, this would be…
Not something you need to write — just a look at what Kitcord does for you.
TypeScript
import { EmbedBuilder } from "discord.js";
const embed = new EmbedBuilder()
.setTitle("🏆 Top Scores")
.setDescription(leaderboardText)
.setColor(0x5b21b6);
await channel.send({ embeds: [embed] });
// Spell: await interaction.reply({ embeds: [embed] });More Messages pieces