Roblox Rainbow Colours For Text

Want to make Roblox look more RGB try this!

// ==UserScript==
// @name         Roblox Rainbow Colours For Text
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Want to make Roblox look more RGB 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.querySelectorAll('*');
var hue=0;
function updateColors() {
  hue=(hue+3)%360;
  var hueStyle = 'hsl(' + hue + ', 100%, 50%)';
  for(var i=0;i<all.length;i++){
    var el = all[i];
    var computedStyle = window.getComputedStyle(el);
    var color = computedStyle.getPropertyValue('color');
    if(color !== hueStyle) {
      el.style.color = hueStyle;
    }
  }
  requestAnimationFrame(updateColors);
}
requestAnimationFrame(updateColors);
})();


})();