client.on('ready',() =>{ setInterval(() => { let textos = ['Olá, tudo bem?', 'Leia as regras!', 'Se registre', 'Como vai seu dia?'] let randola = textos[Math.floor(Math.random() * textos.length)] client.channels.cache.get('906719491969384509').send({ content: `${randola} `}) }, 5000) })