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);
})();
})();