the bot was working good then suddenly the welcome msgs stopped working my discord.js verson is 12.4.1 what i should do
here is my code
const { Client, RichEmbed,Attachment } = require('discord.js');
const bot = new Client();
const client = new Discord.Client()
client.on("guildMemberAdd", member => {
const channel2 = member.guild.channels.get("channelID")
channel2.send(`${member} has join to Our Style server`)
})