This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sidBot/sidBot-js/welcome.js

17 lines
318 B
JavaScript
Raw Normal View History

module.exports = client => {
client.on("guildMemberAdd", member => {
const channelID = 'X';
console.log(member)
const message = `**Welcome to the server, <@${member.id}>!**`;
const channel = member.guild.channels.cache.get(channelID);
channel.send(message);
})
}