Update anti-inspect.js

This commit is contained in:
Boof 2023-02-28 13:46:02 +01:00 committed by GitHub
parent d64341bfd9
commit 829de4b1e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,14 @@ async function spamnettab() {
fetch('https://hexahigh.github.io/cdn/other/main.mp4')
}
}
// Attempt to clear console
async function clearconsole() {
while(true) {
clear();
await delay(50)
}
}
// Disable keys
document.onkeydown = function (e) {
// disable f12
@ -41,4 +49,4 @@ document.onkeydown = function (e) {
if (e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
return false;
}
}
}