how to disable button from client.on(Events.interactionCreate, interaction => {})

how to disable button from
client.on(Events.interactionCreate, interaction => {
...
});
client.on(Events.interactionCreate, interaction => {
...
});
for example the button have customId = "TicketGet" How to disable that button after clicked
3 Replies
d.js toolkit
d.js toolkitβ€’6mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - βœ… Marked as resolved by OP
d.js docs
d.js docsβ€’6mo ago
Structures from the API cannot be edited directly. To do so, you can create a new structure (a builder) using the .from() method
const newEmbed = EmbedBuilder.from(embed).setTitle("title")
const newRow = ActionRowBuilder.from(row).addComponents(component)
const newEmbed = EmbedBuilder.from(embed).setTitle("title")
const newRow = ActionRowBuilder.from(row).addComponents(component)
treble/luna
treble/lunaβ€’6mo ago
Use that to get the builder Access its components, call setDisabled on the one you want to disable and update the message
Want results from more Discord servers?
Add your server
More Posts