ShahriarAbidbd/SmartifyXBotPublic · Bot Template
Do Tasks Smartly with SmartifyX 😎
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/menu_grouptools.js
javascript · 27 lines
1/**#command2name: menu_grouptools3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.editMessageText({13 text: `*1. /p:* Protect any Message14*2. /spoil:* Spoiled any Message`,15 chat_id: chat.id,16 message_id: request.message.message_id,17parse_mode: "markdown",18 reply_markup: {19 inline_keyboard: [20 [{21 text: "Back",22 callback_data: "main_menu",23 style: "danger"24 }]25 ]26 }27})