ShahriarAbidbd/SmartifyXBotPublic ยท Bot Template

Do Tasks Smartly with SmartifyX ๐Ÿ˜Ž

Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
ProfileTelegram
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
Back to folder

commands/menu_home.js

javascript ยท 38 lines

Raw
1/**#command2name: menu_home3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12Api.editMessageText({13  chat_id: chat.id,14  message_id: request.message.message_id,15  text: `Hello *${user.first_name} ${user.last_name || ""}* ๐Ÿ‘‹\nWelcome to *SmartifyX* โ€“ Your Buddy on Telegram\nโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\nNeed a downloader? Spoiler tool? Content Protector? and Many More?\n*SmartifyX* have all the commands you need.\n\nMake your life smart with *SmartifyX* โšก\nโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\nPowered by [Shahriar Abid](https://t.me/ShahriarAbidbd) ๐Ÿ”ฅ`,16  parse_mode: "markdown",17  reply_markup: {18    inline_keyboard: [19      [{20        text: "๐Ÿ› ๏ธ Main Menu",21        callback_data: "main_menu",22        style: "success"23      }],24      [{25          text: "โ“˜ About",26          callback_data: "menu_about",27          style: "primary"28        },29        {30          text: "โœ‰๏ธ Contact Us",31          callback_data: "menu_contact",32          style: "primary"33        }34      ]35 36    ]37  }38})