Amazing, I hope it goes well for you <:pepe_gentle...
# 🌎general
w
Amazing, I hope it goes well for you Regarding your question, you can do it with a bit of code. Insert the execute code card in between your messages and paste this code: async function waitNSeconds(n) { return new Promise((resolve) => { setTimeout(() => { resolve() }, n) }) } // Usage console.log('Start waiting...') await waitNSeconds(3000) The bottom part where it says '3000' refers to how long you want the delay to be in terms of seconds. 3000 =3 seconds so you can adjust to what you want!