import telebot
from telebot import types
from random import randint
bot = telebot.TeleBot('здесь был токен')
@bot.message_handler(commands=['start'])
def start(message):
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
markup.row('Клик')
bot.send_message(message.chat.id, f'Привет, {message.from_user.first_name}!', reply_markup=markup)
@bot.message_handler(content_types=['text'])
def bot_message(message):
if message.chat.type == 'private':
if message.text == 'Клик':
bot.send_message(message.chat.id, f'Вам начислено: {randint(0, 10)}')
bot.polling(none_stop=True)