Greasy Fork is available in English.

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.

< Feedback on Voxiom.IO Aimbot, ESP & X-Ray

Review: Good - script works

§
Posted: 10.01.2024
Edited: 10.01.2024
entity.visible = false;

we can hide objects. if we hide the ones that are blocks, so we can do X-Ray so we can see the blocks. the location of the bomb and so on.

By the way, the skiript is very good.

§
Posted: 10.01.2024
Edited: 10.01.2024
    const entities5 = worldScene[ childrenKey ][ 4 ][ childrenKey ];
    for ( let i = 0; i < entities5.length; i ++ ) {
        const entity = entities5[ i ];
        entity.visible = false;
    }

X-Ray code you need to flit the block.

§
Posted: 10.01.2024
    for ( let i = 0; i < entities5.length; i ++ ) {
        const entity = entities5[ i ];
        if (entity.material.side === 2) entity.visible = false;
        //entity.visible = false;
        console.log(entity);
    }

It makes water and alarms invisible. If you set the value to 0. it means blocks.

ZertaliousAuthor
§
Posted: 11.01.2024

Ig there can be some more misc settings for hiding chunks and stuff

§
Posted: 11.01.2024

Instead of making it completely invisible, we can reduce its opacity, it can also be translucent.

by the way there is a user interface for a cheat I made. you can use it. Malayala Kit

ZertaliousAuthor
§
Posted: 11.01.2024

I have already added "Wireframe Mode" in the script instead of hiding chunks or making them translucent. And I already use another UI library called lil-gui. Its good enough.

§
Posted: 11.01.2024

good but it would be good to filter emerald block, iron block, bomb block and chest. so that we can see its location. just like in minecraft

ZertaliousAuthor
§
Posted: 12.01.2024

Good idea. I might add try to add that.

ZertaliousAuthor
§
Posted: 12.01.2024

This has been added now. Update script.

Post reply

Sign in to post a reply.