// ==UserScript== // @name MOOMOO.IO Toggle rainbowhat!!! (BETA) // @namespace http://tampermonkey.net/ // @version 1.2 // @description ------------------Looks SUPER COOL!!!!!-------------------- // @author Cody Webb // @match *://moomoo.io/* // @match *://sandbox.moomoo.io/* // @match *://dev.moomoo.io/* // @grant none // @downloadURL none // ==/UserScript== (function(){ document.title = "Rainbow MooMod"; document.getElementById("gameName").innerHTML = "Rainbow
MooMod"; var toggleKey = 1; var hatList = { 0: 0, 1: 51, 2: 52, 3: 29, 4: 30, 5: 36, 6: 37, 7: 38, 8: 44, 9: 35, 10: 42, 11: 43, 12: 49 }; document.AddEventListener('Keypress', function(e){ if (e.keycode === 32 && document.activeElement.id.toLowerCase() !== 'chatbox'){ randomHat(); } }); function randomHat() { if (toggleKey === 1) { storeEquip(hatList[Math.floor(Math.random() * 13)]); } } })();