Hi,
You can make the text unselectable using code like this:
$w.onReady(() => {
let text = "some text";
$w("#text1").html = `<p style="-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; ">${text}</p>`
})
Another way will be by putting a transparent layer over the text.
In both ways the text can be copied from the page source code.