Today I Bring You My Personal Typing Forever Discord Script
Warning: This is my personal script that I wrote. If I see any reposts of this Ill report you.
#Simplified for the intellectually challenged and non contributing leeches.
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F710857458104664199%2F713359760996433930%2Funknown.png)
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F710857458104664199%2F713359325875273728%2Funknown.png)
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F710857458104664199%2F713359760996433930%2Funknown.png)
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F710857458104664199%2F713359325875273728%2Funknown.png)
1) Got to https://glitch.com/
2) After you register, click on "New Project"
3) Then Click on "Hello Express"
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712306213915983923%2Funknown.png)
4) By Default, It will look like this.
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712306503310377050%2Funknown.png)
5) Delete All The Code In "Package.json"
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712306839752015922%2Funknown.png)
Delete All The Code In "Server.js"
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712306907804860487%2Funknown.png)
6) Click "New File"
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712307059802243082%2Funknown.png)
7) Type in "config.json"
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712307449759268894%2Funknown.png)
8) After you type it in, click "Add This File"
You'll see, now you have three categories.
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F712305548242190336%2F712307687370522644%2Funknown.png)
9) Now we add the code
Copy and Paste This Code Under This Line Into "config.json"
Code:
{
"token": "",
"prefix": "!"
}
10) Put You Token Between The Quotations
Code:
Example:
{
"token": "TOKEN HERE",
"prefix": "!"
}
11) Copy And Paste This Code Into "package.json"
Code:
{
"name": "typing",
"version": "1.0.1",
"description": "Types forever",
"main": "node server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"discord.js": "^11.3.2"
}
}
12) Copy And Paste This Code Into "server.js"
Code:
const http = require('http');
const Discord = require("discord.js");
const client = new Discord.Client();
const config = require('./config.json');
client.config = config;
client.on("message", async message => {
if(message.content.indexOf(config.prefix) !== 0) return;
const args = message.content.slice(config.prefix.length).trim().split(/ +/g);
const command = args.shift().toLowerCase();
if(command === "?") {
message.delete().catch(O_o=>{});
message.channel.startTyping();
}
});
client.login(config.token);
13) Now Direct Message A Friend This Command
Code:
!? = prefix
Message your friend that prefix command
send !? in a dm on discord.
If it disappears right away it is working
If it doesn't disappear than its not working
![[Image: unknown.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F713332987353104384%2F713333161030844416%2Funknown.png)
You'll be typing forever to the person you send "!?" too. It will piss them off and its funny to see their reactions.
