Advertisement
szabion1dk

1v1.lol blink hack

Sep 29th, 2021
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 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 = true;
  20. //
  21. //
  22. // Code Below!
  23. initMod({toggleKey, godInBlink, debugMode});
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement