The problem is in the code. Reference: The expected indented block after the function definition in line 12.
import telebot
bot = telebot.TeleBot("6874312632:AAG-ZlU4GeruHsI20yARU4wVtt2poNlLKdE")
@bot.message_handler(commands=['start'])
def start(message):
mess = f"Пламенный привет,{message.from_user.first_name} !🔥В данном боте ты сможешь
зарегистрироваться на турнир по Brawl Stars."
bot.send_message(message.chat.id, mess)
@bot.message_handler()
def get_user_text(message):
elif message.text == "id":
bot.send_message(message.chat.id, f"Твой ID: {message.from_user.id}")
else:
bot.send_message(message.chat.id, "Я тебя не понимаю..")
bot.polling(non_stop=True)