[Diep.io] Respawn Score Boost

Gives you the score boost without watching any ads.

// ==UserScript==
// @name              [Diep.io] Respawn Score Boost
// @namespace    http://tampermonkey.net/
// @version           1.1
// @description     Gives you the score boost without watching any ads.
// @author            _Vap
// @match            https://diep.io/*
// @icon               https://www.google.com/s2/favicons?sz=64&domain=diep.io
// @license          MIT
// @grant             none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        let screen = window.ui.screen;
        if (screen === "stats") return;
        else window.input.grantReward();
    }, 250);
})();