You are on page 1of 2

// ==UserScript==

// @name Venge.io HACKS INF AMMO AIMBOT NOCLIP INVISIBILITY FLY INFJUMP
{Venge Hacked Client}
// @namespace http://akncreations.com/
// @version 20230225.1.1.4
// @description The best hacks for VENGE IO (z to open modmenu)
// @author ExplodIng_Andrey
// @match https://*.venge.io/*
// @license https://creativecommons.org/licenses/by-nd/4.0/
// @grant none
// @run-at document-start
// ==/UserScript==

// https://www.youtube.com/@exploding_andrey
// https://www.akncreations.com/vhc.html
// https://github.com/AndreyNesterenko2020/

addEventListener("load", function(){

//VHC designed by ExplodIng_Andrey

//dispose of old client (if any)


if(client) {
client.dispose();
};

var client = {
Hacks: [],
version: "1.1.4",
keyBinds: {},
inGame: false,
};
client.Hack = class {
constructor(enable, mainLoop, disable, name, description, key, delay){
this.enable = function(){try {enable(this_);}catch(e){}; this.isEnabled =
true};
this.mainLoop = mainLoop;
this.disable = function(){try {disable(this_);}catch(e){}; this.isEnabled =
false};
this.name = name;
this.description = description;
this.isEnabled = false;
this.key = key;
client.keyBinds[this.key] = this.name;
var this_ = this;
if(!delay){
delay = 10;
};
function loop(){
if(this_.isEnabled && client){
this_.mainLoop(this_);
};
setTimeout(loop, delay);
};
setTimeout(loop, 100);
client.Hacks.push(this);
};
};
client.MenuElement = class {
constructor(Hacks, title, left, top){
var menuElement = document.createElement("div");
menuElement.style = "left:"+left+"; color: rgba(0, 0, 0, 1) !important;
top:"+top+"; margin: 25px; text-align: center; background: rgba(114, 154, 232, 1) !
important; font-family: inherit; width:20%; height: 60%; position: absolute;
border: solid black 4px";
menuElement.id = title;
menuElement.innerHTML = "<div style='border-bottom: solid black 4px; height:
2.5%; padding: 5%; background-color: rgba(149, 180, 240, 1); font-size: 200%'
id="+title+"header >"+title+"</div>";
client.menuElement.appendChild(menuElement);
for(let i = 0; i < Hacks.length; i++) {
var part = document.createElement("div");
part.style = 'border-bottom: solid black 4px; font-size: 200%';
part.id = Hacks[i].name;
part.innerHTML = Hacks[i].name;
document.getElementById(title).appendChild(part);
document.getElementById(Hacks[i].name).addEventListener("mousedown", function
(event){
if(!pc.controls || !client.inGame) {client.error("You must be in a game to
enable hacks!"); return};
if(!Hacks[i].isEnabled){
Hacks[i].enable();
document.getElementById(Hacks[i].name).style.backgroundColor = "white";
} else {
Hacks[i].disable();
document.getElementById(Hacks[i].name).style.backgroundColor = "rgba(114,
154, 232, 1)";
};
});
document.getElementById(Hacks[i].name).addEventListener("mouseover", function
(event){
document.getElementById(Hacks[i].name).innerHTML = Hacks[i].description;
});
document.getElementById(Hacks[i].name).addEventListener("mouseleave",
function (event){
document.getElementById(Hacks[i].name).innerHTML = Hacks[i].name;
});
};
};
};

client.menuToggled = 0;
client.menuElement = document.createElement("div");
document.body.appendChild(client.menuElement);
client.menuElement.id = "vhc-menu";
client.menuElement.style.width = "100%";
client.menuElement.style.height = "100%";
client.menuElement.style.background = "rgba(0, 0, 0, 0.5)";
client.menuElement.style.position = "absolute";
client.menuElement.style.zIndex = 100;

client.hackList = document.createElement("h1");
document.body.appendChild(client.hackList);... (2 KB restante(s))

You might also like