Advertisement
mattyrose

1.1.lol Blink

Jun 2nd, 2021
3,706
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.84 KB | None | 0 0
  1. // ==UserScript==
  2. // @name         1v1.LOL Blink Script (Release)
  3. // @version      1.0
  4. // @description  Press the blink key to enter/exit blink mode. You will appear like you teleported when you come out of blink. You will get kicked after about 10-15 seconds!
  5. // @author       TDStuart
  6. // @match        https://1v1.lol/
  7. // @grant        none
  8. // @require      https://pastebin.com/raw/PPBXMS89
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     // Change this key to change the keybind (This is a javascript key code!)
  15.     let toggleKey = "KeyT";
  16.     // If true you will have god mode while in blink (Note : God Mode is VERRY Buggy and you may still die)
  17.     let godInBlink = true;
  18.     // Debug Mode (Check Console)
  19.     let debugMode = false;
  20.     //
  21.     //
  22.     // Code Below!
  23.     initMod({toggleKey, godInBlink, debugMode});
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement