You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
This file is useful to dump every roblox funcs with their address, if you don't need it then feel free to delete this file and the import used in main.py
you can take that as an exemple file
"""
from bloxlib.Memory import GetDataModel
from bloxlib.instance import Instance, shared_prop
from bloxlib.Exploit import roblox
import pymem
class dumper:
def dumpfuncs():
print("Starting to dump functions")
DModel = Instance(GetDataModel())
f2 = open("funcs_dump.txt", "w+")
f2.write("")
f2.close()
f = open("funcs_dump.txt", "a")
shared_funcs = []
dumped_classname = []
for func in DModel.FindFirstChild("GroupService").GetBoundedFuncs():