Advertisement
Kirka_Central

Kirka.io Hacks V2

Feb 18th, 2022 (edited)
13,427
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.85 KB | None | 3 1
  1. // ==UserScript==
  2. // @name         Kirka Hack v2
  3. // @version      2.1
  4. // @description  toggle aimbot: X; toggle wallhack: C
  5. // @author       infi
  6. // @match        *://kirka.io/*
  7. // @icon         https://www.google.com/s2/favicons?domain=kirka.io
  8. // @connect      raw.githubusercontent.com
  9. // @connect      githubusercontent.com
  10. // @grant        GM_xmlhttpRequest
  11. // @run-at       document-start
  12. // @noframes
  13. // ==/UserScript==
  14.  
  15. document.addEventListener("DOMContentLoaded", () => {
  16.     GM_xmlhttpRequest({
  17.         url: 'https://raw.githubusercontent.com/42infi/kirka-hacks/main/kirka_hacksV2.js',
  18.         method: "GET",
  19.         nocache: true,
  20.         cache: "no-cache",
  21.         headers: {
  22.             'Cache-Control': 'no-cache'
  23.         },
  24.         onload: function(response){eval(response.responseText)},
  25.         onerror: function(){}
  26.     });
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement