Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name 1v1.LOL Blink Script (Release)
- // @version 1.0
- // @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!
- // @author TDStuart
- // @match https://1v1.lol/
- // @grant none
- // @require https://pastebin.com/raw/PPBXMS89
- // ==/UserScript==
- (function() {
- 'use strict';
- // Change this key to change the keybind (This is a javascript key code!)
- let toggleKey = "KeyT";
- // If true you will have god mode while in blink (Note : God Mode is VERRY Buggy and you may still die)
- let godInBlink = true;
- // Debug Mode (Check Console)
- let debugMode = true;
- //
- //
- // Code Below!
- initMod({toggleKey, godInBlink, debugMode});
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement