// ==UserScript== // @name Kirka Wallhack 2025 // @author Kirka Central // @match *://kirka.io/* // @version 1.0.2 // @description Free Working Kirka Wallhack 2025 // @run-at document-start // @namespace KirkaCentral // @downloadURL none // ==/UserScript== Array.isArray = new Proxy(Array.isArray, { apply(obj, context, args) { const material = args[0]; if (material && material.transparent !== undefined) { for (let materialKey in material) { if (typeof material[materialKey] === "string" && material[materialKey].includes("uniform sampler2D") && material[materialKey].includes("(gl_FragColor.a")) { material[materialKey] = material[materialKey].replace("if (gl_FragColor.a < 0.5) discard;", "gl_FragColor.a = 0.4;"); material.transparent = true; break; } } } return Reflect.apply(obj, context, args); } });