Says time for bed every night at 10 PM, change that if you want it later or earlier, no setup just edit the text if you want.
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
await lib.discord.channels['@0.2.0'].messages.create({
channel_id: `${process.env.CHANNEL_ID}`,
content: `@everyone `,
tts: false,
embeds: [
{
type: 'rich',
title: `Time for bed!`,
description: `Get on that bed, it's 10 PM!!!`,
color: 0x00ffff,
},
],
});