Size
2.2 KB
Version
2.007
Created
Jan 28, 2026
Updated
20 days ago
1// ==UserScript==
2// @name Veck.io Cheat Aimbot, Visuals, Exploits | Recte
3// @description The Best & Only Veck.io Cheat
4// @namespace Recte
5// @version 2.007
6// @icon https://recte.cc/imgs/recte_logo.png
7// @description
8// @author recte.cc | Suppress @ TJ
9// @match https://*veck.io/*
10// @grant GM_xmlhttpRequest
11// @grant unsafeWindow
12// @license MIT
13// @downloadURL https://update.greasyfork.org/scripts/563461/Veckio%20Cheat%20Aimbot%2C%20Visuals%2C%20Exploits%20%7C%20Recte.user.js
14// @updateURL https://update.greasyfork.org/scripts/563461/Veckio%20Cheat%20Aimbot%2C%20Visuals%2C%20Exploits%20%7C%20Recte.meta.js
15// ==/UserScript==
16
17(() => {
18 'use strict';
19
20 console.log('[Recte] Starting loader…');
21
22 /**
23 * Load external JS safely using GM_xmlhttpRequest
24 */
25 function loadScript(url, name) {
26 return new Promise((resolve, reject) => {
27 GM_xmlhttpRequest({
28 method: 'GET',
29 url,
30 onload: res => {
31 try {
32 // Execute in page context
33 unsafeWindow.eval(res.responseText);
34 console.log(`[Recte] Loaded: ${name}`);
35 resolve();
36 } catch (err) {
37 reject(`[Recte] Eval failed for ${name}: ${err}`);
38 }
39 },
40 onerror: err => reject(`[Recte] Request failed for ${name}: ${err}`)
41 });
42 });
43 }
44
45 const libs = [
46 {
47 name: 'UWMK',
48 url: 'https://raw.githubusercontent.com/TJGTA3/filehostalskdfjkalsjflaksdjf/refs/heads/main/metadata31fixed5'
49 },
50 {
51 name: 'Vecte',
52 url: 'https://raw.githubusercontent.com/guy69436-boop/Vecte/refs/heads/main/Vecte.js'
53 }
54 ];
55
56 (async () => {
57 try {
58 for (const lib of libs) {
59 await loadScript(lib.url, lib.name);
60 }
61
62 unsafeWindow.cheat = true;
63 console.log('[Recte] Loader finished.');
64 } catch (e) {
65 console.error(e);
66 }
67 })();
68})();