Skip to content

Latest commit

Β 

History

History
24 lines (20 loc) Β· 751 Bytes

File metadata and controls

24 lines (20 loc) Β· 751 Bytes

import telebot

πŸ”‘ Replace with your NEW regenerated token

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()