BADSHA/Badsha_support_botPublic · Bot Template
AIThis bot automatically reacts to every message it receives in groups by choosing a random emoji from a large list of valid Telegram reaction emojis and sending it as a big reaction via Api.setMessageReaction. The /start command sends a welcome message in private chats explaining that users should add the bot to a group for automatic reactions. It is a simple, functional auto-reaction bot designed to make chats more interactive and fun.
Entertainmentauto-reactionemojireactionstelegramgroup-botrandom
2 commands0 envUpdated 8d agoCreated Aug 30, 2026
commands/_start.js
javascript · 19 lines
1/**#command2name: /start3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if(chat.type != "private") return;13 14let text = `🤖 <b>Welcome to Auto Reaction Bot!</b>\n\nAdd me to your group and I will automatically react to every message, making your chat more interactive and fun! 🎉`;15 16Api.sendMessage({17 text: text,18 parse_mode: "html"19});