Last active
January 14, 2024 22:12
-
-
Save I-NRL/b51055f14d6c74635c303b392386d477 to your computer and use it in GitHub Desktop.
just for fun
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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