Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 

Repository files navigation

DISCONTINUED

DISCONTINUED

DISCONTINUED

DISCONTINUED

DISCONTINUED

roblox offsets dumper ( pattern scanner )

scans the memory of a running roblox process and looks for byte patterns inside the main module. prints the address and offset of each match.

Originally developed by ducks. Currently updated, maintained, and expanded by metix.


what it does

  • finds the roblox process by name (RobloxPlayerBeta.exe)
  • gets the base address and size of the main module
  • walks through all committed, readable memory regions
  • for each pattern, scans region by region and prints the result

currently shipped with beaucoup patterns fdp : luaD_throw ScriptContextResume GetLuaStateForInstance LuaF_Newproto IdentityPtr FireTouchInterest rbx_print KTable PushInstance OpcodeLookupTable Luau_Execute LuaH_DummyNode LuaO_NilObject GetIdentityStruct Impersonator Rawscheduler newgcoblock newclasspage newpage FireProximityPrompt


requirements

  • visual studio or any msvc-compatible compiler
  • roblox must be running before you launch the scanner

build

open in visual studio, make sure you're targeting x64, then build and run.

usage

  1. launch roblox
  2. run the compiled binary as administrator
  3. output will look like:
Roblox PID: 12345
Module Base Address: 0x0
[luaD_throw] Pattern found at address: 0x0 (offset: 0x0)
[OpcodeLookupTable] Pattern found at address: 0x0 (offset: 0x0)

if a pattern isn't found it'll tell you how many regions it scanned.


adding patterns

in main(), add an entry to the patterns vector:

{"48 89 5C 24 ? 57 48 83 EC 20", "myFunction"},

use ?? or ? for wildcard bytes.


notes

  • patterns break on roblox updates, you'll need to rescan and update them
  • only scans MEM_COMMIT regions, skips PAGE_GUARD and PAGE_NOACCESS

lazy to update it! update it by yourself updated for : version-acc4b74f79e743b9

About

An Roblox Offset dumper which dumps the current offsets

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages