We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f73c0 commit d8718ecCopy full SHA for d8718ec
src/commands/asset.ts
@@ -49,7 +49,7 @@ export const data = new SlashCommandBuilder()
49
.addStringOption((option) =>
50
option
51
.setName("id")
52
- .setDescription("Roblox asset ID (example: 77983090842836)")
+ .setDescription("Roblox asset ID (e.g: 77983090842836)")
53
.setRequired(true),
54
);
55
@@ -71,8 +71,8 @@ export async function execute(
71
const downloadUrl = await getRobloxAssetDownloadLink(assetId);
72
73
const embed = new EmbedBuilder()
74
- .setColor("#1C92F2")
75
- .setTitle("📦 Roblox Asset Download")
+ .setColor("#D99E82")
+ .setTitle("📦 ASSET RETRIEVED")
76
.setDescription(
77
`Asset **${assetId}** is ready.\n[Click here to download the file](${downloadUrl}).`,
78
)
0 commit comments