For some reason, my bot doesn't work when a new member joins my guild. I specifically put a detection in the console so when someone joins the guild the console logs it. Yet I don't see anything in the console when I rejoin the server over and over again.
Bot.on('guildMemberAdd', member => {
console.log("new member!");
var Embed = new Discord.MessageEmbed()
.setTitle("New member, " + member.user.name + "!")
.setDescription()
.setColor("#0099ff")
.setTimestamp()
.setFooter()
.setImage()
.setThumbnail();
Bot.channels.cache.get("773416484314939403").send(Embed);
});