processHAX={};
checkForProcess=function(sender)
local processID=getProcessIDFromProcessName'RobloxPlayerBeta.exe';
for index,processes in pairs(processHAX)do
if processes==processID or not processID then
return;
end;
end;
table.insert(processHAX,processID);
openProcess(processID);
autoAssemble([[
[ENABLE]
aobscanmodule(INJECT,RobloxPlayerBeta.exe,8A 86 A8 00 00 00 5E) // should be unique
alloc(newmem,$1000)
label(code)
label(return)
newmem:
code:
mov al,[esi+000000A8]
jmp return
INJECT:
nop
nop
nop
nop
nop
nop
return:
registersymbol(INJECT)
[DISABLE]
INJECT:
db 8A 86 A8 00 00 00
unregistersymbol(INJECT)
dealloc(newmem)
]]);
end;
timer=createTimer(nil);
timer_setInterval(timer,100);
timer_onTimer(timer,checkForProcess);
timer_setEnabled(timer,true);
