import telebot
BOT_TOKEN = "7457861366:AAHtMRg1olTnONaMj1tg0fpwYGrXSFQmDbs" bot = telebot.TeleBot(BOT_TOKEN)
@bot.message_handler(commands=['start']) def send_welcome(message): bot.reply_to(message, "π₯ Welcome to Genin Shinobies Bot!\n\n" "πΊ Subscribe to our channel:\n" "π https://www.youtube.com/@genin-shinobies\n\n" "πΈ Send me a screenshot as proof.\n" "β Once verified, I'll send you the file π.")
@bot.message_handler(content_types=['photo']) def handle_photo(message): bot.reply_to(message, "β Subscription confirmed!\n" "π Here is your file:\n" "https://YOUR-FILE-LINK.com")
print("π Bot is running...") bot.infinity_polling()