Battledudes.io Ads Remover

Removes ads when click in game body

// ==UserScript==
// @name         Battledudes.io Ads Remover
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Removes ads when click in game body
// @author       trịnh HƯng
// @match        https://battledudes.io/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function RemoveAds() {
      const elementRight = document.getElementById('battledudes-io_300x250');
      const elementBottom = document.getElementById('battledudes-io_728x90');

setInterval(() => {
	elementBottom.remove();
	elementRight.remove();
}, 1);

    }
    document.body.addEventListener('click', RemoveAds);

})();