// ==UserScript== // @name Kirka.io Main Screen Username And Lvl Spoofer // @namespace https://discord.gg/4T6HGWTBd7 // @version 1.0 // @description Simple Menu Lvl And Username Changer // @author Jaguar // @match https://kirka.io/* // @icon https://www.google.com/s2/favicons?sz=64&domain=kirka.io // @grant none // @license MIT // @downloadURL none // ==/UserScript== //---------------------------------------------- // Discord: https://discord.gg/4T6HGWTBd7 // //---------------------------------------------- var Username = "Edit Usernme"; var ClanTag = "Edit ClanTag" var Level = "69"; function Update() { document.querySelector('.nickname').textContent = Username; document.querySelector('.levels').textContent = Level; document.querySelector('.clan-tag').textContent = ClanTag; setTimeout(function() { document.querySelector('.level-value').textContent = Level; }, 500); } setInterval(Update, 1000);