Skip to content

Instantly share code, notes, and snippets.

@I-NRL
Last active January 14, 2024 22:12
Show Gist options
  • Save I-NRL/b51055f14d6c74635c303b392386d477 to your computer and use it in GitHub Desktop.
Save I-NRL/b51055f14d6c74635c303b392386d477 to your computer and use it in GitHub Desktop.
just for fun
const {inrl, sleep} = require('../lib');
inrl({
pattern: 'hy',
DismissPrefix : true,
fromMe: 'public'
}, async (m) => {
const {key} = await m.send("Loading");
const emoji = ["❀️"," 🧑","πŸ’›","πŸ’–", "πŸ’š","πŸ’“","πŸ’™","πŸ’œ"," πŸ’","πŸ–€","🀎","πŸ’•","🀍", "πŸ’—"]
let spae = "";
for(i = 1;i<emoji.length;i++){
await sleep(250);
spae = spae+" ";
await m.editMessage(m.from,spae+emoji[i],key);
}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment