My project’s name is “kyria-bot”, my bot will not turn on. Why is this?
I think it might be a banned IP, I don’t know though.
const Discord = require('discord.js');
const client = new Discord.Client();
const db = require('quick.db')
client.login(process.env.TOKEN)
client.on('ready', () => {
console.log("Launching...")
client.user.setStatus('Online')
client.user.setGame('/help')
})
client.on('message', message => {
var prefix = "/"
if(message.content.toLowerCase() === `${prefix}dtw`) {
message.channel.send("Yes, it does work!")
}
})
What do you mean by saying not turn on? If you have loading icon, so you can add the following simple express server code:
const express = require('express')
const app = express()
app.listen(4000)
HKG
3
can you give us the logs from console?
you should be able to see them after clicking there:

cori
4
Hi @loliamcoolbro, welcome to the Glitch forum!
I’m not able to see the project you referenced
If you can double-check the project name and provide an updated on, someone might be able to give some specific guidance.