Skip to content

Instantly share code, notes, and snippets.

@sksbot7
Forked from zailio/hey.js
Created October 1, 2023 16:32
Show Gist options
  • Select an option

  • Save sksbot7/1da8c3c45d444bbc36efe0d0c978f03d to your computer and use it in GitHub Desktop.

Select an option

Save sksbot7/1da8c3c45d444bbc36efe0d0c978f03d 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