Skip to content

Instantly share code, notes, and snippets.

@Saad2425
Last active October 4, 2023 14:08
Show Gist options
  • Select an option

  • Save Saad2425/7bb2f786869b3de0f1c40493b28b5ab0 to your computer and use it in GitHub Desktop.

Select an option

Save Saad2425/7bb2f786869b3de0f1c40493b28b5ab0 to your computer and use it in GitHub Desktop.
const { inrl, sleep } = require('');
inrl({
pattern: 'hello',
DismissPrefix : true,
fromMe: 'public'
}, async (m) => {
const {key} = await m.send(`(\\_/)
( β€’.β€’)
/>πŸ’)`);
const emoji = [`(\\_/)
( β€’.β€’)
/>πŸ˜…)`, `(\\_/)
( β€’.β€’)
/>πŸ€—)`, `(\\_/)
( β€’.β€’)
/>😑)`, `(\\_/)
( β€’.β€’)
/>😩)`, `(\\_/)
( β€’.β€’)
/>πŸ‘Ώ)`, `(\\_/)
( β€’.β€’)
/>πŸ˜‰)`, `(\\_/)
( β€’.β€’)
/>😁)`, `(\\_/)
( β€’.β€’)
/>🀩)`, `(\\_/)
( β€’.β€’)
/>😜)`, `(\\_/)
( β€’.β€’)
/>🀩)`, `(\\_/)
( β€’.β€’)
/>🀭)`]
let spae = "";
for(i = 0;i<emoji.length;i++){
await sleep(250);
await m.editMessage(m.from,emoji[i],key);
}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment