========================================================================
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}
function poopLoop2() {
setTimeout(function() {
document.getElementsByName("username")[0].value = getRandomInt(10000, 100000000);
document.getElementsByName("email")[0].value = getRandomInt(10000, 100000000) + "@d.com";
document.getElementsByName("sign_up")[0].click();
poopLoop2()
}, 100)
}
poopLoop2()
//Made by Krosh123
========================================================================