Skip to content

Instantly share code, notes, and snippets.

View BulzyKrown's full-sized avatar
✔️
Verified Bot Developer in Discord

BulzyKrown BulzyKrown

✔️
Verified Bot Developer in Discord
View GitHub Profile
@BulzyKrown
BulzyKrown / app.js
Created February 5, 2018 05:22 — forked from olvrb/app.js
send random color discord js
message.channel.send({
embed: {
color: Math.floor(Math.random() * 16777214) + 1, //random color between one and 16777214 (dec)
description: `Random color generated: ${randColor}\n${randColor} is equal to 0x${randColor.toString(16).toUpperCase()}`
}
});