Voxiom.IO Aimbot, ESP & X-Ray

Let's you see players and items behind walls in voxiom.io. Comes with an aimbot that locks aim at nearest enemy and auto fires at them. Also shows ores and names of the items that are far far away.

< Valutazione su Voxiom.IO Aimbot, ESP & X-Ray

Domanda/commento

§
Pubblicato: 02/01/2024
let aimbotEnabled = true;
let isDown = false;

window.addEventListener('mousedown', function(event) {
    if (event.button === 2) {
        isDown = true;
    }
});

window.addEventListener('mouseup', function(event) {
    if (event.button === 2) {
        isDown = false;
    }
});


          if ( aimbotEnabled && isDown && entity.isEnemy ) {

                const entPos = entity.myContainer.position;
                if ( Math.hypot( entPos.x - camera.position.x, entPos.z - camera.position.z ) > 0.1 ) {

                    const distance = camera.position.distanceTo( entPos );

                    if ( distance < minDistance ) {

                        targetPlayer = entity;
                        minDistance = distance;

                    }

                }

            }

Isn't it better to do it like this?

ZertaliousAutore
§
Pubblicato: 02/01/2024

Well you are kinda right. Making it toggle on right click is better. Might update it later

Pubblica risposta

Accedi per pubblicare una risposta.