cron.schedule('* * * * *', async () => { console.log("test") const row = new MessageActionRow() .addComponents( new MessageButton() .setCustomId('primary') .setLabel('Primary') .setStyle('PRIMARY'), ); msg = await client.channels.cache.get("941750305022947331").send({ content: 'test', components: [row] }) });