MooMoo.io Simple Force Connect (WORKING 2023)

This mod helps to you Force Connect the server, new code 2023.

// ==UserScript==
// @name         MooMoo.io Simple Force Connect (WORKING 2023)
// @author       Cubic Flex [CF]
// @description  This mod helps to you Force Connect the server, new code 2023.
// @namespace    -
// @version      1.2
// @license      MIT
// @match        *://*.moomoo.io/*
// @grant        unsafeWindow
// ==/UserScript==

var wT = setInterval(()=>{//Makes an interval into a variable for can clear it:
    if(!unsafeWindow.vultr) return;//If the window.vultr is {} then:
    var newVultr = unsafeWindow.vultr;//Makes a new variable for the vultr
    for(let i in unsafeWindow.vultr.servers){//Browse into all servers
        newVultr.servers[i].games[0].playerCount = 0//Then all players are set to 0.
    }
    unsafeWindow.vultr = newVultr;//Vultr is the newVultr variable
    clearInterval(wT);//Clears the interval created and enjoy.
});