Greasy Fork is available in English.

★Moomoo.io Anti Invis! 2022! Non-Bundle!

Anti Invis!

// ==UserScript==
// @name			★Moomoo.io Anti Invis! 2022! Non-Bundle!
// @version			1.0
// @description		Anti Invis!
// @author			xPlasmicc
// @match			*://moomoo.io/*
// @grant			none
// @namespace       https://greasyfork.org/en/users/855407-xplasmicc
// @license         none
// ==/UserScript==

CanvasRenderingContext2D.prototype.rotatef = CanvasRenderingContext2D.prototype.rotate
CanvasRenderingContext2D.prototype.rotate = function(e){
    if(Math.abs(e) > 1e300){
        e = Math.atan2(Math.cos(e), Math.sin(e));
        this.globalAlpha = 0.5;
        this.rotatef(e);
    }else{
        this.rotatef(e);
    }
};