I am writing a telegram to the bot. I ran into such a problem. I need the bot to send a message (text) when clicked on which it was copied (as a token from @BotFather) I use node.js

I am writing a telegram to the bot. I ran into such a problem. I need the bot to send a message (text) when clicked on which it was copied (as a token from @BotFather) I use node.js

thanks for reaching out.
You can simply do that with <code> formatting. The below code can do this:
bot.sendMessage(msg.chat.id, "<code>Hello World Copiable!</code>", {
parse_mode: "HTML",
});
Regards.