How to set up multiple tokens in one script #1380
Unanswered
VisualsByTrace
asked this question in
Q&A
Replies: 1 comment
-
const fs = require("node:fs");
// Selfbot logic here
const tokens = fs.readFileSync("./tokens.txt").toString().split("\n")
tokens.forEach(token => {
client.login(token);
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How do you add multiple tokens into one script allowing more accounts to use the same code? Is there any example of codes someone could also provide?
Beta Was this translation helpful? Give feedback.
All reactions