This web has been hacked & successfully hacked by LunarisSec
- TEAM - : eyelum, CybΞr, 1809's, Cat Analyst
`;
const text = "System Compromised by LunariSec";
const textSpan = document.getElementById("text");
let index = 0, adding = true;
function typeEffect() {
if (adding) {
textSpan.textContent = text.slice(0, index);
index++;
if (index > text.length) {
adding = false;
setTimeout(typeEffect, 1000);
return;
}
} else {
textSpan.textContent = text.slice(0, index);
index--;
if (index < 0) {
adding = true;
setTimeout(typeEffect, 500);
return;
}
}
setTimeout(typeEffect, 150);
}
typeEffect();