Lostbypass (kxBypass) Executor Bypass

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

Pada tanggal 22 Juni 2025. Lihat %(latest_version_link).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

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