let button = new disbut.MessageButton()
.setStyle('red')
.setLabel('My First Button!')
.setID('click_to_function')
.setDisabled();
message.channel.send('Hey, i am powered by https://npmjs.com/discord-buttons', button);
let button = new disbut.MessageButton()
.setStyle('url')
.setURL('https://npmjs.com/discord-buttons')
.setLabel('My First URL Button!')
.setDisabled();
message.channel.send('Hey, i am powered by https://npmjs.com/discord-buttons', button);
P.S: You need to Change your style
to url
, you don't have id
for this kind of buttons too, and also make sure you have your URL in button with setURL
and URL is valid.
Styles | Preview |
---|---|
Red | |
Green | |
Blurple | |
grey (or gray) | |
URL |