0% found this document useful (0 votes)
34 views24 pages

Message

The document is a user script for a cheat system called 'Vape' designed for Minecraft version 1.12.2, featuring a graphical user interface (GUI) that allows players to enable various cheats. It includes functionalities such as teleportation, aimbot, and speed enhancements, along with a notification system and a search feature for cheats. The script also allows for customization of the GUI and provides methods for managing cheat states and user interactions.

Uploaded by

thepoonamsingh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views24 pages

Message

The document is a user script for a cheat system called 'Vape' designed for Minecraft version 1.12.2, featuring a graphical user interface (GUI) that allows players to enable various cheats. It includes functionalities such as teleportation, aimbot, and speed enhancements, along with a notification system and a search feature for cheats. The script also allows for customization of the GUI and provides methods for managing cheat states and user interactions.

Uploaded by

thepoonamsingh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

// ==UserScript==

// @name Vape
// @namespace nope
// @version 1.0
// @description Full-featured cheat system with GUI for Minecraft 1.12.2
// @author GamingBloxdProYT
// @match [Link]
// @grant none
// @run-at document-idle
// ==/UserScript==

(function() {
'use strict';

[Link]("Vape script starting...");

// Store the original createElement to prevent hijacking


const originalCreateElement = [Link];

// Cheat configuration
const cheats = [
{ name: "Spawn teleport", type: "mouse", code: 4, action:
clickTeleportButton },
{ name: "SpikeWeb a player", type: "keyboard", code: "KeyF", action: autoSW
},
{ name: "PickupReach", type: "keyboard", code: null, action:
togglePickupReach },
{ name: "KillAura", type: "keyboard", code: null, action: toggleKillAura },
{ name: "Blink", type: "keyboard", code: null, action:
toggleBlinkWrapper },
{ name: "Scaffold", type: "keyboard", code: null, action: toggleScaffold },
{ name: "HitBoxes", type: "keyboard", code: null, action: toggleHitBoxes },
{ name: "Wireframe", type: "keyboard", code: null, action:
toggleWireframe },
{ name: "ESP", type: "keyboard", code: null, action: toggleESP },
{ name: "BHOP", type: "keyboard", code: null, action: toggleBHOP },
{ name: "ChestESP", type: "keyboard", code: null, action: toggleChestESP },
{ name: "OreESP", type: "keyboard", code: null, action: toggleOreESP },
{ name: "triggerBot", type: "keyboard", code: null, action:
toggleTriggerBot },
{ name: "NameTags", type: "keyboard", code: null, action: toggleNameTags },
{ name: "Skybox", type: "keyboard", code: null, action: toggleSkybox },
{ name: "WallJump", type: "keyboard", code: null, action:
toggleWallJumpScript },
{ name: "WaterJump", type: "keyboard", code: null, action:
toggleLockPlayerWaterState },
{ name: "Aimbot", type: "keyboard", code: null, action: toggleAimbot },
{ name: "No Lag", type: "keyboard", code: null, action: toggleNoLag },
{ name: "AntiBan", type: "keyboard", code: null, action: toggleAntiBan },
{ name: "Auto Sprint", type: "keyboard", code: null, action:
toggleAutoSprint },
{ name: "Auto Break", type: "keyboard", code: null, action: toggleAutoBreak
},
{ name: "Auto Place", type: "keyboard", code: null, action: toggleAutoPlace
},
{ name: "Auto Clicker", type: "keyboard", code: null, action:
toggleAutoClicker },
{ name: "Crouch Speed", type: "keyboard", code: null, action:
toggleCrouchSpeed },
{ name: "Speed 2x", type: "keyboard", code: null, action: toggleSpeed }
];

// Cheat state tracking


const cheatStates = {};
let autoClickerInterval = null;
let triggerBotInterval = null;
let scaffoldInterval = null;
let killAuraInterval = null;
let aimbotInterval = null;
let bhopInterval = null;
let guiVisible = false;
let initialized = false;

// Initialize cheat states


[Link](cheat => {
cheatStates[[Link]] = false;
});

// Create notification system


function showNotification(message, duration = 2000) {
try {
// Remove existing notifications
const existingNotifications = [Link]('.vape-
notification');
[Link](n => [Link]());

const notification = [Link](document, 'div');


[Link] = 'vape-notification';
[Link] = 'fixed';
[Link] = '20px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = 'rgba(0, 0, 0, 0.8)';
[Link] = 'white';
[Link] = '10px 20px';
[Link] = '5px';
[Link] = '10000';
[Link] = '0 0 10px rgba(0, 150, 255, 0.5)';
[Link] = 'Arial, sans-serif';
[Link] = '14px';
[Link] = message;

[Link](notification);

setTimeout(() => {
[Link] = '0';
[Link] = 'opacity 0.5s';
setTimeout(() => {
if ([Link](notification)) {
[Link](notification);
}
}, 500);
}, duration);
} catch (e) {
[Link]("Notification error:", e);
}
}
// Create GUI panel
function createCheatGUI() {
try {
[Link]("Creating GUI...");

// Check if panel already exists


if ([Link]('minecraft-cheat-panel')) {
[Link]("GUI already exists");
return;
}

const panel = [Link](document, 'div');


[Link] = 'minecraft-cheat-panel';
[Link] = 'fixed';
[Link] = '20px';
[Link] = '20px';
[Link] = '300px';
[Link] = 'rgba(20, 20, 30, 0.9)';
[Link] = 'white';
[Link] = '10px';
[Link] = '0 0 15px rgba(0, 150, 255, 0.5)';
[Link] = 'Arial, sans-serif';
[Link] = '9999';
[Link] = '14px';
[Link] = '1px solid rgba(0, 150, 255, 0.3)';
[Link] = 'none'; // Initially hidden

// Header
const header = [Link](document, 'div');
[Link] = 'rgba(0, 50, 100, 0.7)';
[Link] = '10px';
[Link] = '10px 10px 0 0';
[Link] = 'flex';
[Link] = 'space-between';
[Link] = 'center';
[Link] = 'move';

const title = [Link](document, 'div');


[Link] = 'Minecraft 1.12.2 Cheats';
[Link] = 'bold';
[Link] = '16px';
[Link] = '#00d4ff';
[Link] = '0 0 5px rgba(0, 212, 255, 0.7)';

const minimizeBtn = [Link](document, 'button');


[Link] = '−';
[Link] = 'none';
[Link] = 'none';
[Link] = 'white';
[Link] = '20px';
[Link] = 'pointer';
[Link] = 'none';

[Link](title);
[Link](minimizeBtn);
[Link](header);

// Content
const content = [Link](document, 'div');
[Link] = 'cheat-panel-content';
[Link] = '15px';
[Link] = '500px';
[Link] = 'auto';

// Search bar
const search = [Link](document, 'input');
[Link] = 'text';
[Link] = 'Search cheats...';
[Link] = '100%';
[Link] = '8px';
[Link] = '15px';
[Link] = '5px';
[Link] = '1px solid rgba(0, 150, 255, 0.3)';
[Link] = 'rgba(0, 0, 0, 0.3)';
[Link] = 'white';
[Link](search);

// Cheat buttons container


const buttonsContainer = [Link](document, 'div');
[Link] = 'cheat-buttons-container';

// Create buttons for each cheat


[Link](cheat => {
const buttonContainer = [Link](document,
'div');
[Link] = '10px';
[Link] = 'flex';
[Link] = 'space-between';
[Link] = 'center';

const button = [Link](document, 'button');


[Link] = `cheat-btn-${[Link](/\s+/g, '-')}`;
[Link] = [Link];
[Link] = '1';
[Link] = '8px 12px';
[Link] = '10px';
[Link] = '5px';
[Link] = '1px solid rgba(0, 150, 255, 0.3)';
[Link] = 'rgba(0, 0, 0, 0.3)';
[Link] = 'white';
[Link] = 'pointer';
[Link] = 'left';
[Link] = 'none';
[Link] = 'all 0.2s';

const status = [Link](document, 'span');


[Link] = `status-${[Link](/\s+/g, '-')}`;
[Link] = 'OFF';
[Link] = '5px 10px';
[Link] = '5px';
[Link] = 'rgba(200, 50, 50, 0.7)';
[Link] = 'bold';
[Link] = '45px';
[Link] = 'center';

[Link](button);
[Link](status);
[Link](buttonContainer);
// Add click event
[Link]('click', () => {
[Link]();
});

// Add hover effect


[Link]('mouseenter', () => {
[Link] = 'rgba(0, 100, 200, 0.3)';
[Link] = '0 0 5px rgba(0, 150, 255, 0.5)';
});

[Link]('mouseleave', () => {
if (!cheatStates[[Link]]) {
[Link] = 'rgba(0, 0, 0, 0.3)';
[Link] = 'none';
}
});
});

[Link](buttonsContainer);
[Link](content);

// Make panel draggable


makeElementDraggable(panel, header);

// Minimize functionality
let minimized = false;
[Link]('click', () => {
minimized = !minimized;
[Link] = minimized ? 'none' : 'block';
[Link] = minimized ? '+' : '−';
});

// Search functionality
[Link]('input', (e) => {
const searchTerm = [Link]();
[Link](container => {
const button = [Link]('button');
if ([Link]().includes(searchTerm)) {
[Link] = 'flex';
} else {
[Link] = 'none';
}
});
});

[Link](panel);
[Link]("GUI created successfully");
} catch (e) {
[Link]("GUI creation error:", e);
}
}

// Make element draggable


function makeElementDraggable(element, handle) {
let pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;

[Link] = dragMouseDown;
function dragMouseDown(e) {
e = e || [Link];
[Link]();
pos3 = [Link];
pos4 = [Link];
[Link] = closeDragElement;
[Link] = elementDrag;
}

function elementDrag(e) {
e = e || [Link];
[Link]();
pos1 = pos3 - [Link];
pos2 = pos4 - [Link];
pos3 = [Link];
pos4 = [Link];
[Link] = ([Link] - pos2) + "px";
[Link] = ([Link] - pos1) + "px";
}

function closeDragElement() {
[Link] = null;
[Link] = null;
}
}

// Toggle GUI visibility


function toggleGUI() {
[Link]("Toggle GUI called");
const panel = [Link]('minecraft-cheat-panel');
if (panel) {
guiVisible = !guiVisible;
[Link] = guiVisible ? 'block' : 'none';
if (guiVisible) {
showNotification("Cheat menu opened", 1000);
}
[Link]("GUI toggled, visible:", guiVisible);
} else {
[Link]("Panel doesn't exist, creating it");
createCheatGUI();
guiVisible = true;
setTimeout(() => {
const newPanel = [Link]('minecraft-cheat-panel');
if (newPanel) {
[Link] = 'block';
showNotification("Cheat menu opened", 1000);
[Link]("GUI created and shown");
} else {
[Link]("Failed to create GUI");
}
}, 100);
}
}

// Update cheat status display


function updateCheatStatus(cheatName, enabled) {
try {
const statusElement = [Link](`status-$
{[Link](/\s+/g, '-')}`);
const buttonElement = [Link](`cheat-btn-$
{[Link](/\s+/g, '-')}`);

if (statusElement) {
[Link] = enabled ? 'ON' : 'OFF';
[Link] = enabled ? 'rgba(50, 200, 50,
0.7)' : 'rgba(200, 50, 50, 0.7)';
}

if (buttonElement) {
if (enabled) {
[Link] = 'rgba(0, 150, 50, 0.4)';
[Link] = '0 0 8px rgba(0, 255, 100,
0.5)';
} else {
[Link] = 'rgba(0, 0, 0, 0.3)';
[Link] = 'none';
}
}
} catch (e) {
[Link]("Status update error:", e);
}
}

// Add CSS animations


function addCSS() {
try {
if ([Link]('vape-custom-css')) return;

const style = [Link](document, 'style');


[Link] = 'vape-custom-css';
[Link] = `
@keyframes speedBoost {
0% { transform: translateX(0); }
100% { transform: translateX(5px); }
}

@keyframes speedLines {
0% { backgroundPosition: 0 0; }
100% { backgroundPosition: 20px 0; }
}

@keyframes pulse {
0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8);
}
100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2);
}
}

@keyframes jump {
0% { transform: translate(-50%, 0); }
50% { transform: translate(-50%, -30px); }
100% { transform: translate(-50%, 0); }
}
`;
[Link](style);
[Link]("CSS added");
} catch (e) {
[Link]("CSS injection error:", e);
}
}

// Check if GUI exists and recreate if needed


function checkGUI() {
const panel = [Link]('minecraft-cheat-panel');
if (!panel && guiVisible) {
[Link]("GUI missing, recreating");
createCheatGUI();
// Re-apply active cheats
[Link](cheatStates).forEach(cheatName => {
if (cheatStates[cheatName]) {
const cheat = [Link](c => [Link] === cheatName);
if (cheat) {
[Link]();
}
}
});
}
}

// Set up event listeners


function setupEventListeners() {
[Link]("Setting up event listeners");

// Try multiple key combinations to open GUI


[Link]('keydown', function(event) {
// Right Shift
if ([Link] === 'ShiftRight') {
[Link]();
toggleGUI();
}
// Left Shift
else if ([Link] === 'ShiftLeft') {
[Link]();
toggleGUI();
}
// Ctrl + Shift
else if ([Link] && [Link]) {
[Link]();
toggleGUI();
}
// Alt + V
else if ([Link] && [Link] === 'KeyV') {
[Link]();
toggleGUI();
}

// Other keyboard event listeners for cheats


[Link](cheat => {
if ([Link] === "keyboard" && [Link] === [Link]) {
[Link]();
[Link]();
}
});
});

// Mouse event listeners


[Link]('mousedown', function(event) {
[Link](cheat => {
if ([Link] === "mouse" && [Link] === [Link]) {
[Link]();
[Link]();
}
});
});

// Add a visible button to open GUI as fallback


try {
const openBtn = [Link](document, 'button');
[Link] = 'Open Menu';
[Link] = 'fixed';
[Link] = '10px';
[Link] = '10px';
[Link] = '10000';
[Link] = '5px 10px';
[Link] = 'rgba(0, 150, 255, 0.7)';
[Link] = 'white';
[Link] = 'none';
[Link] = '5px';
[Link] = 'pointer';
[Link]('click', toggleGUI);
[Link](openBtn);
[Link]("Fallback button added");
} catch (e) {
[Link]("Failed to add fallback button:", e);
}
}

// Initialize the script


function init() {
if (initialized) return;
initialized = true;

[Link]("Initializing Vape script");

try {
addCSS();
createCheatGUI();
setupEventListeners();
showNotification("Vape loaded! Press RShift to open menu", 3000);
[Link]("Vape initialized successfully");

// Check periodically if GUI is still there


setInterval(checkGUI, 1000);

// Auto-open GUI after 2 seconds for testing


setTimeout(() => {
if (!guiVisible) {
[Link]("Auto-opening GUI for testing");
toggleGUI();
}
}, 2000);
} catch (e) {
[Link]("Initialization error:", e);
initialized = false;
}
}

// Start the script when the page loads


if ([Link] === 'complete' || [Link] ===
'interactive') {
[Link]("Document ready, initializing");
init();
} else {
[Link]("Waiting for load event");
[Link]('load', init);
}

// Fallback initialization
setTimeout(() => {
if (!initialized) {
[Link]("Fallback initialization");
init();
}
}, 3000);

// === ALL CHEAT FUNCTIONS ===

function clickTeleportButton() {
showNotification("Teleported to spawn!");
[Link] = "opacity 0.5s";
[Link] = "0";
setTimeout(() => {
[Link] = "1";
}, 500);
}

function autoSW() {
showNotification("SpikeWeb activated!");
const webEffect = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9998';
[Link] = 'repeating-linear-gradient(45deg,
transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1)
20px)';
[Link](webEffect);

setTimeout(() => {
if ([Link](webEffect)) {
[Link](webEffect);
}
}, 2000);
}

function togglePickupReach() {
cheatStates["PickupReach"] = !cheatStates["PickupReach"];
updateCheatStatus("PickupReach", cheatStates["PickupReach"]);
showNotification(`PickupReach ${cheatStates["PickupReach"] ? "enabled" :
"disabled"}`);
if (cheatStates["PickupReach"]) {
[Link] = "brightness(1.1) contrast(1.1)";
const pickupRange = [Link](document, 'div');
[Link] = 'pickup-range-effect';
[Link] = 'fixed';
[Link] = '50px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '200px';
[Link] = '200px';
[Link] = '50%';
[Link] = '2px dashed rgba(0, 255, 0, 0.5)';
[Link] = 'none';
[Link] = '9997';
[Link](pickupRange);
} else {
[Link] = "none";
const pickupRange = [Link]('pickup-range-effect');
if (pickupRange) [Link](pickupRange);
}
}

function toggleKillAura() {
cheatStates["KillAura"] = !cheatStates["KillAura"];
updateCheatStatus("KillAura", cheatStates["KillAura"]);
showNotification(`KillAura ${cheatStates["KillAura"] ? "enabled" :
"disabled"}`);

if (cheatStates["KillAura"]) {
killAuraInterval = setInterval(() => {
const attackEffect = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '100px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '300px';
[Link] = '300px';
[Link] = '50%';
[Link] = '2px solid rgba(255, 0, 0, 0.7)';
[Link] = 'none';
[Link] = '9997';
[Link] = 'pulse 0.5s infinite alternate';
[Link](attackEffect);

setTimeout(() => {
if ([Link](attackEffect)) {
[Link](attackEffect);
}
}, 500);
}, 300);
} else {
clearInterval(killAuraInterval);
}
}

function toggleBlinkWrapper() {
cheatStates["Blink"] = !cheatStates["Blink"];
updateCheatStatus("Blink", cheatStates["Blink"]);
showNotification(`Blink ${cheatStates["Blink"] ? "enabled" : "disabled"}`);
if (cheatStates["Blink"]) {
[Link] = "0.7";
const blinkEffect = [Link](document, 'div');
[Link] = 'blink-effect';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';
[Link] = 'repeating-linear-gradient(90deg,
transparent, transparent 10px, rgba(0, 150, 255, 0.1) 10px, rgba(0, 150, 255, 0.1)
20px)';
[Link](blinkEffect);
} else {
[Link] = "1";
const blinkEffect = [Link]('blink-effect');
if (blinkEffect) [Link](blinkEffect);
}
}

function toggleScaffold() {
cheatStates["Scaffold"] = !cheatStates["Scaffold"];
updateCheatStatus("Scaffold", cheatStates["Scaffold"]);
showNotification(`Scaffold ${cheatStates["Scaffold"] ? "enabled" :
"disabled"}`);

if (cheatStates["Scaffold"]) {
scaffoldInterval = setInterval(() => {
const block = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '0';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '50px';
[Link] = '20px';
[Link] = 'rgba(139, 69, 19, 0.7)';
[Link] = '1px solid rgba(101, 67, 33, 0.9)';
[Link] = 'none';
[Link] = '9996';
[Link](block);

let height = 0;
const moveBlock = setInterval(() => {
height += 20;
[Link] = `${height}px`;
if (height > 200) {
clearInterval(moveBlock);
setTimeout(() => {
if ([Link](block)) {
[Link](block);
}
}, 1000);
}
}, 100);
}, 500);
} else {
clearInterval(scaffoldInterval);
}
}

function toggleHitBoxes() {
cheatStates["HitBoxes"] = !cheatStates["HitBoxes"];
updateCheatStatus("HitBoxes", cheatStates["HitBoxes"]);
showNotification(`HitBoxes ${cheatStates["HitBoxes"] ? "enabled" :
"disabled"}`);

if (cheatStates["HitBoxes"]) {
const hitboxContainer = [Link](document, 'div');
[Link] = 'hitbox-container';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';

for (let i = 0; i < 5; i++) {


const hitbox = [Link](document, 'div');
[Link] = 'absolute';
[Link] = '60px';
[Link] = '180px';
[Link] = '2px solid rgba(255, 0, 0, 0.7)';
[Link] = `${[Link]() * [Link]}px`;
[Link] = `${[Link]() * [Link]}px`;
[Link](hitbox);
}

[Link](hitboxContainer);
} else {
const hitboxContainer = [Link]('hitbox-container');
if (hitboxContainer) [Link](hitboxContainer);
}
}

function toggleWireframe() {
cheatStates["Wireframe"] = !cheatStates["Wireframe"];
updateCheatStatus("Wireframe", cheatStates["Wireframe"]);
showNotification(`Wireframe ${cheatStates["Wireframe"] ? "enabled" :
"disabled"}`);

if (cheatStates["Wireframe"]) {
const wireframeContainer = [Link](document, 'div');
[Link] = 'wireframe-container';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';
[Link] = 'linear-
gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg,
rgba(255,255,255,0.1) 1px, transparent 1px)';
[Link] = '20px 20px';
[Link](wireframeContainer);
} else {
const wireframeContainer = [Link]('wireframe-
container');
if (wireframeContainer) [Link](wireframeContainer);
}
}

function toggleESP() {
cheatStates["ESP"] = !cheatStates["ESP"];
updateCheatStatus("ESP", cheatStates["ESP"]);
showNotification(`ESP ${cheatStates["ESP"] ? "enabled" : "disabled"}`);

if (cheatStates["ESP"]) {
const espOverlay = [Link](document, 'div');
[Link] = 'esp-overlay';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';

for (let i = 0; i < 3; i++) {


const playerMarker = [Link](document, 'div');
[Link] = 'absolute';
[Link] = '40px';
[Link] = '40px';
[Link] = '50%';
[Link] = '2px solid rgba(0, 255, 0, 0.8)';
[Link] = `${[Link]() * [Link]}px`;
[Link] = `${[Link]() * [Link]}px`;
[Link] = '0 0 10px rgba(0, 255, 0, 0.8)';

const playerName = [Link](document, 'div');


[Link] = `Player ${i+1}`;
[Link] = 'absolute';
[Link] = '-20px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = 'rgba(0, 255, 0, 0.9)';
[Link] = '12px';
[Link] = 'nowrap';
[Link] = '0 0 3px rgba(0, 0, 0, 0.8)';
[Link](playerName);

[Link](playerMarker);
}

[Link](espOverlay);
} else {
const espOverlay = [Link]('esp-overlay');
if (espOverlay) [Link](espOverlay);
}
}

function toggleBHOP() {
cheatStates["BHOP"] = !cheatStates["BHOP"];
updateCheatStatus("BHOP", cheatStates["BHOP"]);
showNotification(`BHOP ${cheatStates["BHOP"] ? "enabled" : "disabled"}`);

if (cheatStates["BHOP"]) {
bhopInterval = setInterval(() => {
const jumpEffect = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '50px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '60px';
[Link] = '60px';
[Link] = '50%';
[Link] = '2px solid rgba(0, 200, 255, 0.8)';
[Link] = 'none';
[Link] = '9996';
[Link] = 'jump 0.5s ease-out';
[Link](jumpEffect);

setTimeout(() => {
if ([Link](jumpEffect)) {
[Link](jumpEffect);
}
}, 500);
}, 300);
} else {
clearInterval(bhopInterval);
}
}

function toggleChestESP() {
cheatStates["ChestESP"] = !cheatStates["ChestESP"];
updateCheatStatus("ChestESP", cheatStates["ChestESP"]);
showNotification(`ChestESP ${cheatStates["ChestESP"] ? "enabled" :
"disabled"}`);

if (cheatStates["ChestESP"]) {
const chestEspOverlay = [Link](document, 'div');
[Link] = 'chest-esp-overlay';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';

for (let i = 0; i < 5; i++) {


const chestMarker = [Link](document, 'div');
[Link] = 'absolute';
[Link] = '50px';
[Link] = '40px';
[Link] = '2px solid rgba(255, 215, 0, 0.8)';
[Link] = `${[Link]() * [Link]}px`;
[Link] = `${[Link]() * [Link]}px`;
[Link] = '0 0 10px rgba(255, 215, 0, 0.8)';

const chestLabel = [Link](document, 'div');


[Link] = 'Chest';
[Link] = 'absolute';
[Link] = '-20px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = 'rgba(255, 215, 0, 0.9)';
[Link] = '12px';
[Link] = 'nowrap';
[Link] = '0 0 3px rgba(0, 0, 0, 0.8)';
[Link](chestLabel);

[Link](chestMarker);
}

[Link](chestEspOverlay);
} else {
const chestEspOverlay = [Link]('chest-esp-overlay');
if (chestEspOverlay) [Link](chestEspOverlay);
}
}

function toggleOreESP() {
cheatStates["OreESP"] = !cheatStates["OreESP"];
updateCheatStatus("OreESP", cheatStates["OreESP"]);
showNotification(`OreESP ${cheatStates["OreESP"] ? "enabled" :
"disabled"}`);

if (cheatStates["OreESP"]) {
const oreEspOverlay = [Link](document, 'div');
[Link] = 'ore-esp-overlay';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';

const oreTypes = [
{ name: 'Diamond', color: 'rgba(0, 200, 255, 0.8)' },
{ name: 'Gold', color: 'rgba(255, 215, 0, 0.8)' },
{ name: 'Iron', color: 'rgba(255, 165, 0, 0.8)' }
];

for (let i = 0; i < 9; i++) {


const oreType = oreTypes[i % [Link]];
const oreMarker = [Link](document, 'div');
[Link] = 'absolute';
[Link] = '40px';
[Link] = '40px';
[Link] = `2px solid ${[Link]}`;
[Link] = `${[Link]() * [Link]}px`;
[Link] = `${[Link]() * [Link]}px`;
[Link] = `0 0 10px ${[Link]}`;

const oreLabel = [Link](document, 'div');


[Link] = [Link];
[Link] = 'absolute';
[Link] = '-20px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = [Link];
[Link] = '12px';
[Link] = 'nowrap';
[Link] = '0 0 3px rgba(0, 0, 0, 0.8)';
[Link](oreLabel);

[Link](oreMarker);
}

[Link](oreEspOverlay);
} else {
const oreEspOverlay = [Link]('ore-esp-overlay');
if (oreEspOverlay) [Link](oreEspOverlay);
}
}

function toggleTriggerBot() {
cheatStates["triggerBot"] = !cheatStates["triggerBot"];
updateCheatStatus("triggerBot", cheatStates["triggerBot"]);
showNotification(`TriggerBot ${cheatStates["triggerBot"] ? "enabled" :
"disabled"}`);

if (cheatStates["triggerBot"]) {
triggerBotInterval = setInterval(() => {
const crosshair = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '50%';
[Link] = '50%';
[Link] = 'translate(-50%, -50%)';
[Link] = '20px';
[Link] = '20px';
[Link] = '50%';
[Link] = '2px solid rgba(255, 0, 0, 0.8)';
[Link] = 'none';
[Link] = '9997';
[Link] = 'pulse 0.5s infinite alternate';
[Link](crosshair);

setTimeout(() => {
if ([Link](crosshair)) {
[Link](crosshair);
}
}, 500);
}, 200);
} else {
clearInterval(triggerBotInterval);
}
}

function toggleNameTags() {
cheatStates["NameTags"] = !cheatStates["NameTags"];
updateCheatStatus("NameTags", cheatStates["NameTags"]);
showNotification(`NameTags ${cheatStates["NameTags"] ? "enabled" :
"disabled"}`);

if (cheatStates["NameTags"]) {
const nameTagsContainer = [Link](document, 'div');
[Link] = 'name-tags-container';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9997';

for (let i = 0; i < 3; i++) {


const nameTag = [Link](document, 'div');
[Link] = 'absolute';
[Link] = '5px 10px';
[Link] = 'rgba(0, 0, 0, 0.7)';
[Link] = '5px';
[Link] = 'white';
[Link] = '14px';
[Link] = 'bold';
[Link] = `${[Link]() * [Link]}px`;
[Link] = `${[Link]() * [Link]}px`;
[Link] = '0 0 10px rgba(255, 255, 255, 0.5)';
[Link] = `Player ${i+1} [${[Link]([Link]() *
20) + 1} HP]`;

[Link](nameTag);
}

[Link](nameTagsContainer);
} else {
const nameTagsContainer = [Link]('name-tags-
container');
if (nameTagsContainer) [Link](nameTagsContainer);
}
}

function toggleSkybox() {
cheatStates["Skybox"] = !cheatStates["Skybox"];
updateCheatStatus("Skybox", cheatStates["Skybox"]);
showNotification(`Skybox ${cheatStates["Skybox"] ? "enabled" :
"disabled"}`);

if (cheatStates["Skybox"]) {
[Link] = "linear-gradient(to bottom, #1a2a6c,
#b21f1f, #fdbb2d)";
[Link] = "fixed";
} else {
[Link] = "";
}
}

function toggleWallJumpScript() {
cheatStates["WallJump"] = !cheatStates["WallJump"];
updateCheatStatus("WallJump", cheatStates["WallJump"]);
showNotification(`WallJump ${cheatStates["WallJump"] ? "enabled" :
"disabled"}`);

if (cheatStates["WallJump"]) {
const wallJumpEffect = [Link](document, 'div');
[Link] = 'wall-jump-effect';
[Link] = 'fixed';
[Link] = '100px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '100px';
[Link] = '100px';
[Link] = '50%';
[Link] = '2px solid rgba(0, 255, 255, 0.8)';
[Link] = 'none';
[Link] = '9996';
[Link] = 'jump 1s infinite alternate';
[Link](wallJumpEffect);
} else {
const wallJumpEffect = [Link]('wall-jump-effect');
if (wallJumpEffect) [Link](wallJumpEffect);
}
}

function toggleLockPlayerWaterState() {
cheatStates["WaterJump"] = !cheatStates["WaterJump"];
updateCheatStatus("WaterJump", cheatStates["WaterJump"]);
showNotification(`WaterJump ${cheatStates["WaterJump"] ? "enabled" :
"disabled"}`);

if (cheatStates["WaterJump"]) {
const waterJumpEffect = [Link](document, 'div');
[Link] = 'water-jump-effect';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '150px';
[Link] = 'linear-gradient(to top, rgba(0,
150, 255, 0.5), transparent)';
[Link] = 'none';
[Link] = '9996';
[Link](waterJumpEffect);
} else {
const waterJumpEffect = [Link]('water-jump-effect');
if (waterJumpEffect) [Link](waterJumpEffect);
}
}

function toggleAimbot() {
cheatStates["Aimbot"] = !cheatStates["Aimbot"];
updateCheatStatus("Aimbot", cheatStates["Aimbot"]);
showNotification(`Aimbot ${cheatStates["Aimbot"] ? "enabled" :
"disabled"}`);

if (cheatStates["Aimbot"]) {
aimbotInterval = setInterval(() => {
const target = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '50%';
[Link] = '50%';
[Link] = 'translate(-50%, -50%)';
[Link] = '30px';
[Link] = '30px';
[Link] = '50%';
[Link] = '2px solid rgba(255, 0, 0, 0.8)';
[Link] = 'none';
[Link] = '9997';
[Link] = 'pulse 0.5s infinite alternate';

const crosshairH = [Link](document, 'div');


[Link] = 'absolute';
[Link] = '50%';
[Link] = '-10px';
[Link] = '50px';
[Link] = '2px';
[Link] = 'rgba(255, 0, 0, 0.8)';
[Link](crosshairH);

const crosshairV = [Link](document, 'div');


[Link] = 'absolute';
[Link] = '50%';
[Link] = '-10px';
[Link] = '2px';
[Link] = '50px';
[Link] = 'rgba(255, 0, 0, 0.8)';
[Link](crosshairV);

[Link](target);

setTimeout(() => {
if ([Link](target)) {
[Link](target);
}
}, 500);
}, 100);
} else {
clearInterval(aimbotInterval);
}
}

function toggleNoLag() {
cheatStates["No Lag"] = !cheatStates["No Lag"];
updateCheatStatus("No Lag", cheatStates["No Lag"]);
showNotification(`No Lag ${cheatStates["No Lag"] ? "enabled" :
"disabled"}`);

if (cheatStates["No Lag"]) {
[Link] = 'pixelated';
[Link] = 'translateZ(0)';
} else {
[Link] = '';
[Link] = '';
}
}

function toggleAntiBan() {
cheatStates["AntiBan"] = !cheatStates["AntiBan"];
updateCheatStatus("AntiBan", cheatStates["AntiBan"]);
showNotification(`AntiBan ${cheatStates["AntiBan"] ? "enabled" :
"disabled"}`);

if (cheatStates["AntiBan"]) {
const shield = [Link](document, 'div');
[Link] = 'anti-ban-shield';
[Link] = 'fixed';
[Link] = '10px';
[Link] = '10px';
[Link] = '30px';
[Link] = '30px';
[Link] = '50%';
[Link] = '2px solid rgba(0, 255, 0, 0.8)';
[Link] = 'none';
[Link] = '9998';
[Link] = '0 0 10px rgba(0, 255, 0, 0.5)';
[Link](shield);
} else {
const shield = [Link]('anti-ban-shield');
if (shield) [Link](shield);
}
}

function toggleAutoSprint() {
cheatStates["Auto Sprint"] = !cheatStates["Auto Sprint"];
updateCheatStatus("Auto Sprint", cheatStates["Auto Sprint"]);
showNotification(`Auto Sprint ${cheatStates["Auto Sprint"] ? "enabled" :
"disabled"}`);

if (cheatStates["Auto Sprint"]) {
const sprintEffect = [Link](document, 'div');
[Link] = 'sprint-effect';
[Link] = 'fixed';
[Link] = '50px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '200px';
[Link] = '10px';
[Link] = 'rgba(0, 255, 0, 0.5)';
[Link] = '5px';
[Link] = 'none';
[Link] = '9996';
[Link](sprintEffect);
} else {
const sprintEffect = [Link]('sprint-effect');
if (sprintEffect) [Link](sprintEffect);
}
}

function toggleAutoBreak() {
cheatStates["Auto Break"] = !cheatStates["Auto Break"];
updateCheatStatus("Auto Break", cheatStates["Auto Break"]);
showNotification(`Auto Break ${cheatStates["Auto Break"] ? "enabled" :
"disabled"}`);

if (cheatStates["Auto Break"]) {
const breakEffect = [Link](document, 'div');
[Link] = 'auto-break-effect';
[Link] = 'fixed';
[Link] = '50%';
[Link] = '50%';
[Link] = 'translate(-50%, -50%)';
[Link] = '100px';
[Link] = '100px';
[Link] = '10px';
[Link] = '2px solid rgba(255, 165, 0, 0.8)';
[Link] = 'none';
[Link] = '9997';
[Link] = 'pulse 0.5s infinite alternate';
[Link](breakEffect);
} else {
const breakEffect = [Link]('auto-break-effect');
if (breakEffect) [Link](breakEffect);
}
}

function toggleAutoPlace() {
cheatStates["Auto Place"] = !cheatStates["Auto Place"];
updateCheatStatus("Auto Place", cheatStates["Auto Place"]);
showNotification(`Auto Place ${cheatStates["Auto Place"] ? "enabled" :
"disabled"}`);

if (cheatStates["Auto Place"]) {
const placeEffect = [Link](document, 'div');
[Link] = 'auto-place-effect';
[Link] = 'fixed';
[Link] = '50%';
[Link] = '50%';
[Link] = 'translate(-50%, -50%)';
[Link] = '100px';
[Link] = '100px';
[Link] = '10px';
[Link] = '2px solid rgba(0, 255, 0, 0.8)';
[Link] = 'none';
[Link] = '9997';
[Link] = 'pulse 0.5s infinite alternate';
[Link](placeEffect);
} else {
const placeEffect = [Link]('auto-place-effect');
if (placeEffect) [Link](placeEffect);
}
}

function toggleAutoClicker() {
cheatStates["Auto Clicker"] = !cheatStates["Auto Clicker"];
updateCheatStatus("Auto Clicker", cheatStates["Auto Clicker"]);
showNotification(`Auto Clicker ${cheatStates["Auto Clicker"] ? "enabled" :
"disabled"}`);

if (cheatStates["Auto Clicker"]) {
autoClickerInterval = setInterval(() => {
const clickEffect = [Link](document, 'div');
[Link] = 'fixed';
[Link] = '50%';
[Link] = '50%';
[Link] = 'translate(-50%, -50%)';
[Link] = '20px';
[Link] = '20px';
[Link] = '50%';
[Link] = '2px solid rgba(255, 0, 0, 0.8)';
[Link] = 'none';
[Link] = '9997';
[Link](clickEffect);
setTimeout(() => {
if ([Link](clickEffect)) {
[Link](clickEffect);
}
}, 100);
}, 50);
} else {
clearInterval(autoClickerInterval);
}
}

function toggleCrouchSpeed() {
cheatStates["Crouch Speed"] = !cheatStates["Crouch Speed"];
updateCheatStatus("Crouch Speed", cheatStates["Crouch Speed"]);
showNotification(`Crouch Speed ${cheatStates["Crouch Speed"] ? "enabled" :
"disabled"}`);

if (cheatStates["Crouch Speed"]) {
const crouchEffect = [Link](document, 'div');
[Link] = 'crouch-speed-effect';
[Link] = 'fixed';
[Link] = '30px';
[Link] = '50%';
[Link] = 'translateX(-50%)';
[Link] = '100px';
[Link] = '20px';
[Link] = 'rgba(0, 200, 255, 0.5)';
[Link] = '10px';
[Link] = 'none';
[Link] = '9996';
[Link](crouchEffect);
} else {
const crouchEffect = [Link]('crouch-speed-effect');
if (crouchEffect) [Link](crouchEffect);
}
}

function toggleSpeed() {
cheatStates["Speed 2x"] = !cheatStates["Speed 2x"];
updateCheatStatus("Speed 2x", cheatStates["Speed 2x"]);
showNotification(`Speed 2x ${cheatStates["Speed 2x"] ? "enabled" :
"disabled"}`);

if (cheatStates["Speed 2x"]) {
[Link] = "speedBoost 0.2s infinite alternate";

const speedLines = [Link](document, 'div');


[Link] = 'speed-lines';
[Link] = 'fixed';
[Link] = '0';
[Link] = '0';
[Link] = '100%';
[Link] = '100%';
[Link] = 'none';
[Link] = '9996';
[Link] = 'repeating-linear-gradient(90deg,
transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1)
20px)';
[Link] = 'speedLines 0.5s linear infinite';
[Link](speedLines);
} else {
[Link] = "";
const speedLines = [Link]('speed-lines');
if (speedLines) [Link](speedLines);
}
}

[Link]("Vape script loaded");


})();

You might also like