// ==UserScript== // @name CyphrNX Ultra-Crosshair // @namespace http://tampermonkey.net/ // @version 4.6 // @description Sci-fi crosshair with rotating, fading effects for Bloxd.io // @author CyphrNX // @match https://bloxd.io/ // @icon https://www.google.com/s2/favicons?sz=64&domain=bloxd.io // @grant none // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/526406/CyphrNX%20Ultra-Crosshair.user.js // @updateURL https://update.greasyfork.icu/scripts/526406/CyphrNX%20Ultra-Crosshair.meta.js // ==/UserScript== (function() { 'use strict'; function removeDefaultCrosshair() { const defaultCrosshair = document.querySelector(".CrossHair"); if (defaultCrosshair) { defaultCrosshair.remove(); } } function createCustomCrosshair() { if (document.getElementById("cyphrnx-crosshair")) return; const crosshair = document.createElement("div"); crosshair.id = "cyphrnx-crosshair"; crosshair.style.position = "fixed"; crosshair.style.top = "50%"; crosshair.style.left = "50%"; crosshair.style.transform = "translate(-50%, -50%)"; crosshair.style.pointerEvents = "none"; crosshair.style.zIndex = "9999"; crosshair.style.display = "flex"; crosshair.style.justifyContent = "center"; crosshair.style.alignItems = "center"; crosshair.style.animation = "rotateCrosshair 5s linear infinite, fadeEffect 3s infinite alternate"; crosshair.innerHTML = `
`; document.body.appendChild(crosshair); } window.addEventListener("load", () => { setTimeout(() => { removeDefaultCrosshair(); createCustomCrosshair(); }, 500); }); })();