您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
For XGladius.
// ==UserScript== // @name Live Channel (Hydrogen M) // @namespace http://tampermonkey.net/ // @version 0.1 // @description For XGladius. // @author HamstaGang/BeboMods // @match *://*.roblox.com/* // @match *://roblox.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=roblox.com // @grant none // @license MIT // @noframes // ==/UserScript== (async () => { 'use strict'; while (typeof Roblox === "undefined" || typeof Roblox.ProtocolHandlerClientInterface === "undefined") { await new Promise(resolve => setTimeout(resolve)); } try { let ProtocolHandlerClientInterface = Roblox.ProtocolHandlerClientInterface; Object.defineProperty(ProtocolHandlerClientInterface, "playerChannel", { value: "LIVE", writable: false }); Object.defineProperty(ProtocolHandlerClientInterface, "channel", { value: "LIVE", writable: false }); Object.defineProperty(ProtocolHandlerClientInterface, "studioChannel", { value: "", writable: false }); console.warn("✅ Roblox channel set to LIVE successfully!"); } catch (exception) { console.warn("⚠️ Error trying to set the Roblox channel:"); console.error(exception); } })();