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.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Voxiom.IO Aimbot, ESP & X-Ray
// @namespace    http://tampermonkey.net/
// @version      2.2
// @description  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.
// @author       HITLER
// @match        *://voxiom.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=voxiom.io
// @grant        none
// @run-at       document-start
// @require      https://unpkg.com/[email protected]/build/three.min.js
// @require      https://cdn.jsdelivr.net/npm/[email protected]
// ==/UserScript==

const THREE = window.THREE;

Object.defineProperty( window, 'THREE', {
get() {

return undefined;

}
} );

const settings = {
showPlayers: true, 
showPlayerNames: false,
showItems: true, 
showItemNames: false, 
showBlocks: false,
showLines: true, 
showOres: false,
worldWireframe: false, 
aimbotEnabled: true, 
aimbotOnRightMouse: true,
aimBehindWalls: false, 
aimHeight: 0.93,
autoFire: true, 
aimAtEveryone: false, 
createdBy: 'HITLER',
editAimbotBlacklist() {

const currList = Object.keys( aimbotBlacklist ).join( ', ' );
const string = prompt( 'Enter usernames of players for whom aimbot should be disabled.\nSeparated by single comma:', currList );

if ( string !== null ) {

aimbotBlacklist = {};
string.split( ',' )
.map( name => name.trim().toLowerCase() )
.filter( name => name.length > 0 )
.forEach( name => ( aimbotBlacklist[ name ] = true ) );

updateBlacklistBtn();

}

}, 
showHelp() {

dialogEl.style.display = dialogEl.style.display === '' ? 'none' : '';

}
};

let aimbotBlacklist = {
};

function updateBlacklistBtn() {

let name = 'Edit Aimbot Blacklist';

const n = Object.keys( aimbotBlacklist ).length;
if ( n > 0 ) name = `${name} (${n} user${n === 1 ? '' : 's'})`;

controllers.editAimbotBlacklist.name( name );

}

const gui = new lil.GUI();
const controllers = {};
for ( const key in settings ) {

controllers[ key ] = gui.add( settings, key ).name( fromCamel( key ) ).listen();

}

controllers.aimHeight.min( 0 ).max( 1.5 );
controllers.createdBy.disable();
addDescription( controllers.aimAtEveryone, 'Enable this to make aimbot work in Survival mode.' );
updateBlacklistBtn();

function addDescription( controller, text ) {

const div = document.createElement( 'div' );
div.className = 'my-lil-gui-desc';
div.innerText = text;
controller.domElement.querySelector( '.name' ).appendChild( div ); 

}