ShahriarAbidbd/SmartifyXBotPublic ยท Bot Template
Do Tasks Smartly with SmartifyX ๐
Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
commands/menu_home.js
javascript ยท 38 lines
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})