Simple Discord Bot Tutorial In Just 4 Mins..
*In this video i will tell you guys how to make a discord bot in simple way without any error or difficulties.
Code Script:
const {Client, GatewayIntentBits } = require('discord.js');
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent
]
}) ;
client.on('ready', () = {
console.log('Bot is online!');
});
client.on('messageCreate',(message) =angle bracket{
if (message.content === 'youtube') {
message.reply('Subscribe');
}
} ) ;
client.login('WRITE YOUR TOKEN NUMBER FROM DISCORD');
CHAPTERS:
0:00 - INTRO
0:15 - STEP 1 ( INSTALL REQUIREMENTS)
0:45 - STEP 2 (CREATE YOUR BOT)
1:11 - STEP 3 (INVITE BOT TO YOUR SERVER)
1:39 - STEP 4 (CREATE PROJECT FOLDER)
2:11 - STEP 5 (CREATE BOT FILE)\
2:19 - STEP 6 (ADD THE SCRIPT CODE)
3:07 - STEP 7 (TIME TO TEST THE BOT)
3:43 - OUTRO
My Discord:http://discordapp.com/users/149728611...
ThankYou