您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Want to make Roblox look more chaotic while also looking kinda nice try this!
// ==UserScript== // @name Roblox Random Rainbow Colours For Text // @namespace http://tampermonkey.net/ // @version 0.6 // @description Want to make Roblox look more chaotic while also looking kinda nice try this! // @author Lingonjr#5296 // @match *://www.roblox.com/* // @icon https://th.bing.com/th?id=ODLS.57391826-d729-4400-bf1f-284ae27f489d&w=32&h=32&qlt=90&pcl=fffffa&o=6&pid=1.2 // @grant none // ==/UserScript== (function() { 'use strict'; (function(){ var all=document.getElementsByTagName('*'); var hue=0; setInterval(function(){ for(var i=0;i<all.length;i++){ all[i].style.color='hsl(' + ((hue+i*10)%360) + ', 100%, 50%)'; } hue=(hue+1)%360; }, 50); })(); })();