-
-
Save sksbot7/1da8c3c45d444bbc36efe0d0c978f03d to your computer and use it in GitHub Desktop.
just for fun
This file contains hidden or 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