Roblox unban tool

Unban yourself!

// ==UserScript==
// @name         Roblox unban tool
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Unban yourself!
// @author       You
// @license      MIT
// @match        https://www.roblox.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=www.roblox.com
// @grant        none
// ==/UserScript==

(function() {
let overlayHTML = `
<div id="Unban">
<p class="message-section" id="reactivate-message">You may re-activate your account by agreeing to our <a href="https://www.roblox.com/info/terms" target="_blank">Terms of Use</a>.</p>
<div class="checkbox">
                        <input type="checkbox" id="agree-checkbox" onchange="document.getElementById('reactivate-button').disabled = !this.checked;">
                        <label for="agree-checkbox">I Agree</label>
                    </div>
<div class="action-buttons">
                <div>
                    <form action="https://www.roblox.com/not-approved/reactivate" method="POST">
                        <input name="__RequestVerificationToken" type="hidden" value="bgZZ2oNx_7eq7CMSDsmh0z6aonhPB3nPtUw27qMBxlm0EFsxJFpRSM9nemVfBDDCf-1_miFXhqxBDt7Br_Zrw6onJEI1" wfd-id="id2">
                        <input data-val="true" data-val-number="The field PunishmentId must be a number." data-val-required="The PunishmentId field is required." id="punishmentId" name="punishmentId" type="hidden" value="0" wfd-id="id3">
                        <button type="submit" class="btn-primary-md btn-min-width" id="reactivate-button">Re-activate My Account</button>
                    </form>
                </div>
            <div>
                <button type="button" class="btn-control-md btn-min-width" id="logout-button" data-bind="https://auth.roblox.com/v2/logout">Logout</button>
            </div>
        </div>
</div>

<style>
#Unban {z-index: 10;position: absolute;top: 320px;left: 7px;transition: 0.5s;}
</style>
`
function get(x){ return document.getElementById(x); };

let overlay = document.createElement("div");
    overlay.innerHTML = overlayHTML;
    document.body.appendChild(overlay);
 }
)();