Lostbypass (kxBypass) Executor Bypass

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

22.06.2025 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);
}
})();