Script Boom Wa

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

const input = document.

querySelectorAll("[contenteditable='true']")[1];

function dispatch(input, message) {


var evt = new InputEvent('input', {
bubbles: true,
});
input.innerHTML = message;
input.dispatchEvent(evt);
document.querySelector('span[data-icon="send"]').click();
}

function lyricsPrank(text) {
text.split(' ').map((word) => dispatch(input, word));
}

function bombPrank(message, count) {


let i = 0;
while (i < count) {
dispatch(input, message);
i++;
}
}

You might also like