Lostbypass (kxBypass) Executor Bypass

new bypasser ~ made by awaitlol. [NOW WORKS BY ITSELF!]

2025-06-22 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Lostbypass (kxBypass) Executor Bypass
// @description  new bypasser ~ made by awaitlol. [NOW WORKS BY ITSELF!]
// @namespace    https://discord.gg/pqEBSTqdxV
// @version      2.0
// @match        https://*.work.ink/1ZRk*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function () {
  'use strict';

// NOTE: THIS USERSCRIPT MOSTLY WORKS FOR THE SWIFT KEYSYSTEM WORK.INK, IT ALSO WORKS FOR SOME WORK.INK LINKS BUT NOT ALL OF THEM! YOU CAN MODIFY IT TO WORK ON OTHER ONES ASWELL!!
// USE AT YOUR OWN RISK ~ IF YOU GET BLACKLISTED FROM THE SWIFT KEYSYSTEM IT IS NOT MY FAULT!!

if (window.location.href.includes("work.ink/1ZRk/")) {
  alert("Bypass is currently patched, please join the Discord -> https://discord.gg/pqEBSTqdxV")
  console.log("bypass by awaitlol. ~ pls dont sue me bass ~");


  const repeatSelectors = [
    '.button-box .accessBtn',
    'button.closelabel'

  ];

  let skipClicked = false;
  let accessClicked = false;

  const interval = setInterval(() => {
    document.querySelector('.main-modal')?.remove();

    repeatSelectors.forEach(sel => {
      const btn = document.querySelector(sel);
      if (btn) {
        btn.click();
        console.log(`Clicked ${sel}`);
      }
    });

    if (!skipClicked) {
      const skipBtn = document.querySelector('button.skipBtn');
      if (skipBtn) {
        skipBtn.click();
        skipClicked = true;
        console.log('Clicked skipBtn');

        setTimeout(() => {
          const accessBtn = document.querySelector('#access-offers.accessBtn');
          if (accessBtn) {
            accessBtn.click();
            accessClicked = true;
            console.log('Clicked #access-offers.accessBtn');

            document.body.innerHTML = '';
            const wrapper = document.createElement('div');
            wrapper.style.position = 'fixed';
            wrapper.style.top = '50%';
            wrapper.style.left = '50%';
            wrapper.style.transform = 'translate(-50%, -50%)';
            wrapper.style.display = 'flex';
            wrapper.style.justifyContent = 'center';
            wrapper.style.alignItems = 'center';
            wrapper.style.height = '100vh';
            wrapper.style.width = '100vw';

            wrapper.appendChild(accessBtn);
            document.body.appendChild(wrapper);

            clearInterval(interval);
          }
        }, 1000);
      }
    }
  }, 1000);
}
})();