diff --git a/commands/image manipulation/gay.js b/commands/image manipulation/gay.js new file mode 100644 index 0000000..e62185a --- /dev/null +++ b/commands/image manipulation/gay.js @@ -0,0 +1,17 @@ +const Color = "RANDOM", Random = require("srod-v2"); +const Discord = require("discord.js"); + +module.exports = { + name: "gay", + aliases: [], + category: "Image", + description: "Return A Gay Image!", + usage: "Gay | ", + run: async (client, message, args) => { + + const Member = message.mentions.members.first() || message.guild.members.cache.get(args[0]) || message.member; + const Data = await Random.Gay({ Image: Member.user.displayAvatarURL({ format: "png" }), Color: Color }); + + return message.channel.send(Data); + } +};