You can try doing this:
xxxxxxxxxx
/*
example:
Buttons[0] = new discordButton.MessageButton()
.setStyle('gray')
.setID("0");
*/
const msg = await message.channel.send({
embed: YOUR EMBED HERE,
components: [
{
type: 1,
components: [Button[0], Button[1], Button[2], Button[3], Button[4]],
},
{
type: 1,
components: [more, buttons, here, max, 5]
}
{
type: 1,
components: [you, can, do, 5, times]
}
]
});