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.

< 腳本Voxiom.IO Aimbot, ESP & X-Ray的回應

提問/評論

§
發表於:2024-01-02
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?

Zertalious作者
§
發表於:2024-01-02

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

發表回覆

登入以回復