Shahriyaahh/downloader_69RobotPublic · Bot Template

🎬 Universal Downloader Bot is a fast and easy-to-use Telegram bot that lets you download videos from Facebook, Instagram, and YouTube with a single command. Simply send "/dl <video_link>", and the bot will fetch the video for you in seconds.

Utilitydownloadervideofacebookinstagramyoutubeping
ProfileTelegram
9 commands0 envUpdated 26d agoCreated Aug 6, 2026
Back to folder

commands/_admin_panel.js

javascript · 32 lines

Raw
1/**#command2name: /admin_panel3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!user.id == 8375123229) {13  return14}15 16Api.sendMessage({17  text: "Admin Panel",18  reply_markup: {19    inline_keyboard: [20      [{21        text: "✅ Check API Health",22        callback_data: "check_api_health"23      }],24      [{25        text: "☰ Other Commands",26        callback_data: " other_commands",27        style: "success"28      }]29 30    ]31  }32})