diff --git a/commands/utility/feedback.js b/commands/utility/feedback.js
index 754761c..ee3aa26 100644
--- a/commands/utility/feedback.js
+++ b/commands/utility/feedback.js
@@ -22,7 +22,7 @@ export default {
 		// Don't let new account use this command to prevent spam
 		const date = new Date();
 		if (interaction.user.createdAt > date.setDate(date.getDate() - 7)) {
-			return interaction.reply({ content: 'Your account is too new to be able to use this command!', ephemeral: true });
+			return interaction.reply({ content: '❌ Your account is too new to be able to use this command!', ephemeral: true });
 		}
 
 		const channel = interaction.client.channels.resolve(feedbackChannelId);
diff --git a/commands/utility/vid2gif.js b/commands/utility/vid2gif.js
index f6e5822..1854e3b 100644
--- a/commands/utility/vid2gif.js
+++ b/commands/utility/vid2gif.js
@@ -42,14 +42,14 @@ export default {
 
 				if (fileSize > 100) {
 					await interaction.deleteReply();
-					await interaction.followUp('Uh oh! The video once converted is too big!', { ephemeral: true });
+					await interaction.followUp('❌ Uh oh! The video once converted is too big!', { ephemeral: true });
 				}
 				else if (fileSize > 8) {
 					const fileURL = await utils.upload(gifsicleOutput)
 						.catch(err => {
 							console.error(err);
 						});
-					await interaction.editReply({ content: `File was bigger than 8 mb. It has been uploaded to an external site.\n${fileURL}`, ephemeral: false });
+					await interaction.editReply({ content: `â„šī¸ File was bigger than 8 mb. It has been uploaded to an external site.\n${fileURL}`, ephemeral: false });
 				}
 				else {
 					await interaction.editReply({ files: [gifsicleOutput], ephemeral: false });