I have tried making a command menu embed with buttons to go through pages. The only problem with this is you can't edit the bot message (I believe), since you can only use listeners for the button like this:
bot.on('clickButton', (button) => {
if (button.id === 'someid') {
button...
}
})
... So how exactly could you edit an embed?
Msg.edit
? – ceqoX