bloxy.hosting

Home

Welcome back!

Login with your favorite platform to get started with Bloxy Hosting.

bot.js
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");