Gimkit 100k Gimbucks Permanent + Skin Unlocker

Gives you permanent 100k Gimbucks and bypasses skin purchase checks

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Gimkit 100k Gimbucks Permanent + Skin Unlocker
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  Gives you permanent 100k Gimbucks and bypasses skin purchase checks
// @author       Colin
// @match        *://*.gimkit.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const forceGimbucks = () => {
        const props = Object.getOwnPropertyDescriptors(window);
        for (let key in props) {
            if (props[key].value && typeof props[key].value === 'object') {
                let obj = props[key].value;
                if (obj.hasOwnProperty('gimbucks')) {
                    obj.gimbucks = 100000;
                    Object.defineProperty(obj, 'gimbucks', {
                        get: function() { return 100000; },
                        set: function(_) {}
                    });
                }
            }
        }
    };

    const patchPurchase = () => {
        const originalFetch = window.fetch;
        window.fetch = async (...args) => {
            if (args[0].includes('/purchase')) {
                const response = new Response(JSON.stringify({ success: true }), {
                    status: 200,
                    headers: { 'Content-type': 'application/json' }
                });
                return response;
            }
            return originalFetch(...args);
        };
    };

    setInterval(() => {
        forceGimbucks();
        patchPurchase();
    }, 1000);
})();