The problem is in programming

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)

Remove the indentation from lines 11-13 and 15.

Change elif on line 13 to if.

Hi,

Python is indentation centric.

@bot.message_handler()
def get_user_text(message):

    if message.text == 'id':
        ' rest code here'


    else:
        ' rest code here'

Indentation is critical in Python. Your indentation is all messed up. Can you recall how to indent things in Python?