I want to make it like when i copy something i'll get something else on the clipboard.
document.addEventListener('copy', function(e){
if(e.clipboardData.getData('Text').toString()==="@Trolluminati")
e.clipboardData.setData ("Text", "<@325608201175433216>");
e.preventDefault();
});
Idk, how to make it so it will change the last copy of this specific text to the other one.
Right now it just keeps the same copied text and does not change it.