Bloxd.io Performance Booster

Reduce lag and cap FPS in Bloxd.io (No maximum cap depending on your PC)

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 or Violentmonkey 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         Bloxd.io Performance Booster
// @namespace    https://bloxd.io/
// @version      1.0
// @description  Reduce lag and cap FPS in Bloxd.io (No maximum cap depending on your PC)
// @author       iTzPenzAr
// @match        *://bloxd.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

// Define performance settings
const config = {
shadows: false, // Disable shadows
particles: false, // Remove particles
postProcessing: false, // Disable post-processing effects
fpsCap: 15000000 // Set FPS cap (can be adjusted as needed)
};

// Save settings to local storage
localStorage.setItem('shadows', JSON.stringify(config.shadows));
localStorage.setItem('particles', JSON.stringify(config.particles));
localStorage.setItem('postProcessing', JSON.stringify(config.postProcessing));
localStorage.setItem('fpsCap', JSON.stringify(config.fpsCap));

// Reload the page to apply the settings
    window.location.reload();
})();