Auto Respawn

Automatically clicks the respawn button when you die in battledudes.io.

// ==UserScript==
// @name         Auto Respawn
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically clicks the respawn button when you die in battledudes.io.
// @author       M.
// @match        *://battledudes.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        const btn = document.querySelector('#respawn_button');
        if (btn && btn.offsetParent !== null) {
            btn.click();
        }
    }, 400);
})();