OWOP Random Color Fixed

LSD xd

// ==UserScript==
// @name         OWOP Random Color Fixed
// @namespace    *.ourworldofpixels.com/*
// @version      0.2.5
// @description  LSD xd
// @author       Armağan
// @match        *.ourworldofpixels.com/*
// @grant        none
// ==/UserScript==

var interval = window.prompt("interval? (MS)", "50")

setInterval(function(){

var R = Math.floor((Math.random() * 255) + 1)
var G = Math.floor((Math.random() * 255) + 1)
var B = Math.floor((Math.random() * 255) + 1)

WorldOfPixels.player.selectedColor = [R, G, B]

},interval);