import telebot
from telebot import types
@bot.message_handler(content_types=['text','photo'])
def announcement(message):
if str.lower('будва') in message.text:
bot.copy_message(chat_id='@TESTCHATIDGG', from_chat_id=message.chat.id, message_id=message.id)
bot.polling(none_stop=True)