Embed
Allows you to create stunning embeds with our embed builder.
const embed = Utility.embed({
author: "Hello", // Author name
authorIcon: "url", // URL for the author icon
title: "Hello", // Embed title
description: "Hello World", // Embed description
fields: [
{
name: "Hello World", // Field name
value: "Hello World", // Field value
inline: true // Whether the field is inline (true) or not (false)
}
],
color: "default", // Embed color: can be "default", "error", "success", or any hex color
timestamp: true, // Show timestamp: true to include, false to exclude
image: "url", // URL for the image in the embed
thumbnail: "url", // URL for the thumbnail image in the embed
footer: "Hello World", // Footer text
footerIcon: "url", // URL for the footer icon
url: "url" // URL the title will link to
});
Last updated
