📦 Discord Forum Backup

Is there anything Im missing?

📦 arquivado 💬 3 mensagens
📋 Como funciona o download:
  1. Vertigo 2026-03-03 00:41:40
    Hi I just wanna clarify im not a skid. Just new to this stuff and want people to help me respectfully. Im smart. Just guide me on the right path and terms and tools I need to know etc general knowledge and AI can teach me the rest. Anyways Im writing a external for roblox rn and I want you to look over this summary ( AI wrote the summary) Is there anything I am missing or should know about? # Project Structure ```RobloxExternal/ ├── main.cpp # Entry point ├── driver.hpp # User-mode kernel driver IPC interface ├── kernel_driver.cpp # Kernel driver (.sys) — physical memory R/W ├── scanner.cpp / scanner.hpp # Game engine traversal + data caching ├── overlay.cpp / overlay.hpp # DirectX 11 overlay + window hijacking ├── sdk.hpp # Math types (Vector3, Vector2, Matrix4x4, W2S) ├── crypto.hpp # Compile-time string encryption + jitter ├── Offsets/offsets.hpp # All 300 game offsets (YuB-X V2.1.2 dump) ├── features/ │ ├── features.hpp # Feature declarations + global state │ ├── visuals.cpp # ESP rendering │ ├── aimbot.cpp # Aim assistance │ └── movement.cpp # Speed/jump modification ├── menu/ │ ├── menu.cpp / menu.hpp # ImGui custom-themed menu ├── imgui/ # ImGui library (v1.90+, DX11 backend) ├── CMakeLists.txt # CMake build config ├── build.bat # Automated build script └── docs/ # Research documents (7 files)``` ```TLDR — Roblox External Cheat (C++) External cheat with custom kernel driver. Reads game memory via physical memory translation (MmMapIoSpace), communicates through a 4KB shared memory block (no IOCTLs/ETW). Driver hooks a .data pointer in win32kfull.sys for the handshake. Stack: C++20, DirectX 11, ImGui, WDK 10.0.26100, MSVC 19.50 Features: ESP (boxes/names/health/distance), Aimbot (bezier smoothing + humanization), Speed/Jump hack Files: 15 source files — kernel_driver.cpp (driver), driver.hpp (IPC), scanner.cpp (DataModel traversal), visuals/aimbot/movement .cpp (features), overlay.cpp (DX11), menu.cpp (ImGui), crypto.hpp (string encryption), offsets.hpp (300 offsets from YuB-X V2.1.2) Anti-detect: Physical mem reads, shared mem IPC, no device object, string encryption, jittered timing, bezier aimbot Gaps: SendInput is flagged (needs Arduino HID), no HWID spoof, basic overlay hijacking, offsets expire on update Output: RobloxExternal.exe (459KB) + SysMonSvc.sys (6.5KB) — both compile clean```
  2. RoRvzzz 2026-03-03 01:29:58
    no need for a kernel driver at all on roblox and docs are useless, also yubx is internal offsets unless your using their external dumper but idk if that gives 300 offsets
  3. Vertigo 2026-03-03 01:35:32
    gotcha thanks bro