How to make a Discord Bot Without Downloading Anything + Host it Online FOREVER - thinkfaststudio.com

How to make a Discord Bot Without Downloading Anything + Host it Online FOREVER

Imagine Gaming Play
Views: 783945
Like: 38813
Want to make a Discord Bot without downloading anything but also host it online forever? Awesome! This video is for you!

In this video we’re going to make a Discord Bot with downloading whatsoever + Make it stay online forever
Last year, I made a video about how to make a discord bot without downloading anything and that went very well but unfortunately some viewers were not ok with it because of the quality/how to add bot/how do you type that and more
also the video got a little outdated (thanks to DiscordJS v13)
so this time, I decided to make a updated video with better quality and more precision

Question: Why I can’t paste in the shell?
If you’re having trouble pasting the code in the shell, right click and paste.

Question: My repl.it is constantly getting deleted.
Click on the three dots option (next to add file and add folder), then click on “Show hidden files”.
You may delete the previous .replit and create a new one
BUT PLEASE, do not delete replit.nix.

— Links —
Discord Developers Portal:

Repl.it:

Shell Code:

Uptime Robot:

If you want to learn the programming language that is used in this video, I’ve made a series specifically about it.

Need help with something?
Join my Discord Server:

My Socials:
Discord:
Github: (I don’t put source code there)
Instagram:
Website:
——————–

Closed Captions/Subtitles Team:
▶ Heather7 muktayib (Spanish)

▶ CanadianQwerty (French)


Tags-:
discord bot
discord js
how to make a discord bot
thiscord bot
discordjs bot
how to make discord bot without downloading anything
how to make a discord js bot
discord.js
discord bot no download
discord bot tutorial
how to make discord bot 24/7
how to make discord bot online forever
how to make a discord bot with 24/7 hosting
how to make a discord and host it online forever
—-

Thank you so much for watching, be sure to subscribe so you don’t miss the next part.
Peace 💖

500 Comments

  1. i copied the exact code i tried in many different ways but when i try to run it, it always says Syntax Error: Unexpected token ')'. I am trully dissapointed

  2. why not just make us copy the code from pastebin or something :/

  3. at 4.06, replit doesn't allow me to create a file with the name '.replit'

  4. I did try to make one but failed miserably 🙁

  5. for some reason i cant paste the code into the shell part. Is this a problem because im on mobile?

  6. I know this might be my problem but I put in my username and password in correctly and says wrong login

  7. Hi im typing the index in the discord doesn't show as a green colour

  8. Bro I’m on mobile. Do a tutorial on how to do it on mobile!

  9. for lazy people

    const express = require ("express");
    const app = express ();

    app.listen(3000, () => {
    console.log("Project is running!");
    })
    app.get("/", (req,res) => {
    res.send("Hello world!");
    })
    const Discord = require ("discord.js");
    const client = new Discord.Client({intents: ["GUILDS", "GUILD_MESSAGES"]});

    client.on("message", message => {
    if(message.content === "ping") {
    message.channel.sent("pong")
    }
    })

    client.login(process.env.token)

  10. I cant use .replit as a name for a file pls help

  11. BRO IT SAYS PLEASE ENTER A REDIRECT URI AT GENERATED URL WHAT DO I DO

  12. 6:42 why I dont have the copy button I only have Reset token. if somebody know plz help me

  13. can you send the code in a file because it is showing error

  14. ir woudnt let me paste it so i will say it doesnt work

  15. Omg the code part is too hard. I cant do it 🙁

  16. Hey. Can someone help me. I don’t have the copy token button. The button I do have is reset token. What do I do

  17. package json doesn't even have the right code

  18. Weird when i put .replit (i make a new file) its just that it already exist but its nowhere..

  19. Code if you aren't good at typing (like me)

    const express = require("express");

    const app = express();

    app.listen(3000, () => {

    console.log("Project is running!");

    })

    app.get("/", (seq, res) => {

    res.send("Hello world!");

    })

    const Discord = require("discord.js");

    const client = new Discord.Client({intents: ["GUILDS","GUILD_MESSAGES"]})

    client.on("message", message => {

    if(message.content === "ping") {

    message.channel.send("pong")

    }

    })

    client.login(process.env.token)

  20. my bot is online, but the code for "ping" messages isnt working

  21. when i saw the coding part… i was like yep im not doing this

  22. HOW THE FU** DO I VERIFY MZSELF IN THIS SHIT DEVELOPER PORTAL APP????????????????????????????????????????????

  23. Thank you this is actually useful for my community I have subcribed

  24. my bot is online but it wont take commands

  25. hey mister the shell code link dont work anymore

  26. Muscle Muscle Muscle Muscle Muscle Dementia says:

    const express = require("express");
    const app = express();

    app.listen(3000, () => {
    console.log("Project is running!");
    })

    app.get("/", (req, res) => {
    res.send("Hello World!");
    })

    const Discord = require("discord.js");
    const client = new Discord.Client({intents: ["GUILDS", "GUILD_MESSAGES"]});

    client.on("message", message => {
    if(message.content === "ping") {
    message.channel.send("pong")
    }
    })

    client.login(process.env.token);

  27. I spend half an hour on your stupid discord bot. IT DOES NOT WORK!!!!!!!!!!!

  28. i cant nam,e the folder .replit noting is coming

  29. Update 18 July, 2022
    If your bot is not online and if you have followed the steps correctly, do the following:
    Open Shell and enter this command:
    npm install [email protected]
    This should fix your problem

    also, if you're not able to create the .replit file, skip that part!
    ———
    Continue watching this series:-

    Embeds – A special way to send message through your discord bot

    https://www.youtube.com/watch?v=wPtkvL9rUXg&t=1s

    Command Handling – Separate all your commands into different files
    https://www.youtube.com/watch?v=1KVGyUemRy0&t=304s

Leave a Reply

Your email address will not be published.