aiko-chan-ai / discord.js-selfbot-v13

An unofficial discord.js fork for creating selfbots

Home Page:https://discordjs-self-v13.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Only the first button is being clicked using message.clickButton

TSShadowYT opened this issue · comments

Which package is the feature request for?

The core library

Feature

I want to click the second or third button but how do i do it?

Ideal solution or implementation

client.on("messageCreate", async (message) => {
if (message.author.id === "438057969251254293" && sit === true) {
const embed = message.embeds[0];
if (embed && embed.footer && embed.footer.text === "ahh") {
await sleep(1000)
try {
await message.clickButton()
} catch(error) {
console.log(chalk.red("Error logged!", error))
}
}
}
}
);

I want to click the second/third button i want to but i cant do it..

Alternative solutions or implementations

No response

Other context

No response