const { Client, GatewayIntentBits } = require('discord.js'); // Discord bot token const TOKEN = 'DISCORD_BOT_TOKENINIZ'; // Discord client oluştur const client = new Client({ intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent ] }); // Bot hazır olduğunda çalışacak client.once('ready', () => { console.log('Bot giriş yaptı!'); }); // Discord'da mesaj alındığında çalışacak client.on('messageCreate', async (message) => { if (message.author.bot) return; if (message.content === '!ping') { await message.channel.send('Pong!'); } }); // Botu başlat client.login(TOKEN); şu doğrumu