$interactionDelete
$interactionDelete
will delete a reply of an interaction.
Usage
$interactionDelete
Example(s)
This will delete the interaction after 5 seconds.
1module.exports = [2 {3 name: "interactionDelete",4 type: "interaction",5 prototype: "button",6 code: `7 $interactionDelete8 $wait[5s]9 $interactionReply[Hello, World!]10 `11 }12];