Created
May 1, 2025 05:23
-
-
Save AlbinoDrought/0d9d6f04be968ab502ce18b83cf6a320 to your computer and use it in GitHub Desktop.
2025 Zoom Cheat / Zoom Mod Userscript for SlitherIO / Slither.io / Slither.com/io working with Greasemonkey 2, no zoom glitch (sorry for SEO text - I want to be able to find it later)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name SlitherIO Zoom 2025 | |
// @description Slither.io working cheat 2025, no zoom glitch, no zoomout glitch, simple code without any obfuscation | |
// @grant none | |
// @match *://slither.com/* | |
// @match *://slither.io/* | |
// ==/UserScript== | |
var targetZoom = null; | |
function zoom(e) { | |
if (!unsafeWindow.gsc) { return; } | |
unsafeWindow.gsc *= Math.pow(0.9, e.deltaY / 120); | |
if (unsafeWindow.gsc > 2) { | |
unsafeWindow.gsc = 2; | |
} | |
if (unsafeWindow.gsc < 0.1) { | |
unsafeWindow.gsc = 0.1; | |
} | |
targetZoom = unsafeWindow.gsc; | |
} | |
window.addEventListener('wheel', zoom); | |
setInterval(function () { | |
if (targetZoom) { | |
unsafeWindow.gsc = targetZoom; | |
} | |
}, 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment