Login with your favorite platform to get started with Bloxy Hosting.
Login with Discord Login with Google
const { Client } = require("discord.js");
const client = new Client();
client.on("ready", () => {
console.log(`Bot logged in as ${client.user.tag}`);
});
client.on("messageCreate", msg => {
if (msg.content === "!hello") {
msg.reply("Hi there!");
}
});
client.login("YOUR_BOT_TOKEN");