Skip to content

Instantly share code, notes, and snippets.

@Saad2425
Created October 4, 2023 10:02
Show Gist options
  • Select an option

  • Save Saad2425/18b66cf60355c9408939271fe6da5647 to your computer and use it in GitHub Desktop.

Select an option

Save Saad2425/18b66cf60355c9408939271fe6da5647 to your computer and use it in GitHub Desktop.
const { inrl, sleep } = require('../lib');
inrl({
pattern: 'Hi',
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