generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Club Houses » Off Topic
Home Search
 

Using a hack for good

Previous Thread :: Next Thread 
manofthebase44 is not online. manofthebase44
Joined: 14 Feb 2012
Total Posts: 2221
18 Jul 2013 12:54 PM
-- Level source source run VIA Lua Engine view How_To_Use
local How_To_Use_This=[==[
Close out of all Roblox Games;
Set Date to Oct 1 2012,
Reboot computer,
Fix Roblox Players,
Open CE,
Open Settings,
Add AutoAttatch and put in RobloxPlayer.exe;RobloxPlayerBeta.exe,
Go to debug,
Check VEH Debbugger,
Open Memory
Go to lua Engine
Run it,
Then while game is loading
Go back to Memory
and press f9
then Walla its loaded
]==];
print(How_To_Use_This);
local Exploits, Successes, AddressList, NoRun, Interface = {}, {}, {}, {}, {};
local GlobalOffset = "28";




function GetExploit(index)
local tab, scan, result = Exploits[index], createMemScan(true);
memscan_returnOnlyOneResult(scan, true);
memscan_firstScan(scan, soExactValue, vtByteArray, rtTruncated, table.concat(tab[2], " "), nil, 0, 0x00FFFFFF, "", fsmNotAligned, nil, false, false, false, false);
memscan_waitTillDone(scan);
result = memscan_getOnlyResult(scan);
if result == nil then return nil; end
result = string.format("%X", result + tab[3]);
result = string.rep("0", 8 - string.len(result)) .. result;
return result;
end
function AddExploit(name, hex, offset)
table.insert(Exploits, {name, hex, offset})
end
function toAddr(num)
local num = tonumber(num);
local addr = string.format("%X", num):upper();
addr = string.rep("0", 8 - string.len(addr)) .. addr;
return addr;
end








debugger_onBreakpoint = function()
local function GetAddress(ESPaddr, Offset)
local ESPaddr, Offset = tostring(ESPaddr) or string.rep("0", 8), tostring(Offset == nil and GlobalOffset or Offset);
local SCaddr_base = tonumber("0x" .. ESPaddr) + tonumber("0x" .. Offset);
local SCaddr_cont1, SCaddr_cont2, SCaddr_cont3, SCaddr_cont4 = tostring(string.format("%X", SCaddr_base)), tostring(string.format("%X", SCaddr_base + 1)), tostring(string.format("%X", SCaddr_base + 2)), tostring(string.format("%X", SCaddr_base + 3));
local SCaddr = (readBytes(SCaddr_cont1) + (readBytes(SCaddr_cont2) * 256) + (readBytes(SCaddr_cont3) * 65536) + (readBytes(SCaddr_cont4) * 16777216));
return toAddr(SCaddr);
end
if readBytes(GetAddress(toAddr(ESP), GlobalOffset), 1) == 0x0D then
local JOIN_addr = GetAddress(toAddr(ESP), GlobalOffset);
local JOIN_len = tonumber("0x"..GetAddress(toAddr(ESP), string.format("%X", tonumber("0x"..GlobalOffset) + 4)));
local JOIN_script_tbl = readBytes(JOIN_addr, JOIN_len, true);
local JOIN_script = "";
table.foreach(JOIN_script_tbl, function(i, v) JOIN_script = JOIN_script .. string.char(v); end);
local script = JOIN_script .. [==[repeat wait() until game:service'Players'.LocalPlayer;LocalPlayer=game.Players.LocalPlayer;LocalPlayer.Chatted:connect(function(Msg) if Msg:sub(1,2)=='//' then local Source=Msg:sub(3);local sFunc,sError=loadstring(Source);if sError then Msg=Instance.new'Message';Msg.Parent=Workspace;Msg.Text=sError;game:service'Debris';AddItem(Msg,5);else Msg=Instance.new'Message';Msg.Parent=Workspace;Msg.Text='Running script',game:service'Debris':AddItem(Msg,5);Ran,Error=coroutine.resume(corotine.create(function() sFunc() end));Hint=Instance.new'Hint';Hint.Parent=Workspace;Hint.Text=tostring( (not Ran and Error or 'Script executed') );game:service'Debris':AddItem(Hint,5);end;end;end);Ran=Instance.new'Hint';Ran.Text='Level 7 executed, chat your skrip after two slashes',Ran.Parent=game:service'CoreGui';game:service'Debris':AddItem(Ran,5)]==]
local memory = allocateSharedMemory("[ROBLOX]-ScriptTrainer", string.len(script) + 5);
local mem = toAddr(memory);
local len = toAddr(string.len(script));
local success_catch = writeString(mem, script);
writeBytes(ESP + tonumber("0x" .. GlobalOffset), tonumber("0x" .. mem:sub(7, 8)), tonumber("0x" .. mem:sub(5, 6)), tonumber("0x" .. mem:sub(3, 4)),tonumber("0x" .. mem:sub(1, 2)));
writeBytes(ESP + tonumber("0x" .. GlobalOffset) + 4, tonumber("0x" .. len:sub(7, 8)), tonumber("0x" .. len:sub(5, 6)), tonumber("0x" .. len:sub(3, 4)),tonumber("0x" .. len:sub(1, 2)));
print("[RBXTrainer]: Script Execution location " .. GetAddress(toAddr(ESP), GlobalOffset) .. " with length " .. tonumber("0x" .. len));
pcall(function() debug_removeBreakpoint(EIP); end);
messageDialog("Join.ashx found and " .. (success_catch and "injected successfully!" or "failed to inject."), (success_catch and 2 or 1), 2);
end
debug_continueFromBreakpoint(co_run)
end




function Exec()
pcall(function() object_destroy(Interface.MainFrame); end);
Exploits, Successes, AddressList, Interface = {}, {}, {}, {};
AddExploit("level", {0x89, 0x74, 0x24, 0x0C, 0x89, 0x06, 0xE8}, 4)
AddExploit("script", {0x83, 0xEC, 0x14, 0x56, 0x57, 0x8B, 0x7C, 0x24, 0x2C, 0x85, 0xFF}, 3)
for i, v in pairs(Exploits) do
local exploit = GetExploit(i);
if (exploit == nil) then
print("[RBXTrainer]: Failed \"" .. v[1] .. "\"");
else
pcall(function() debug_removeBreakpoint(exploit); end);
debug_setBreakpoint(exploit);
AddressList[v[1]] = exploit;
table.insert(Successes, v[1]);
print("[RBXTrainer]: Success \"" .. v[1] .. "\" [" .. exploit .. "]");
end
end
print("[RBXTrainer]: " .. tostring(#Successes) .. "/" .. tostring(#Exploits) .. " exploits found.")




if #Successes == #Exploits then
print("[RBXTrainer]: Launched successfully. Listening for Join.ashx now...");
else
messageDialog("[RBXTrainer]: Initializing failed. RBXTrainer fails to launch", 1, 2);
end
end




function myCheck(_)
local id = getProcessIDFromProcessName("RobloxPlayerBeta.exe");
if id ~= nil then
for i, v in pairs(NoRun) do
if v == id then
return
end
end
table.insert(NoRun, id);
openProcess(id);
debugProcess(2);
Exec();
else
local id2 = getProcessIDFromProcessName("RobloxPlayer.exe");
if id2 ~= nil then
for i, v in pairs(NoRun) do
if v == id2 then
return
end
end
table.insert(NoRun, id2);
openProcess(id2);
debugProcess(2);
Exec();
end
end
end




t = createTimer(nil)
timer_setInterval(t, 500)
timer_onTimer(t, myCheck)
timer_setEnabled(t, true)
Report Abuse
OTNavmesh is not online. OTNavmesh
Joined: 14 Jul 2013
Total Posts: 602
18 Jul 2013 12:56 PM
get the hell out op
script kiddies these days

ヽ༼ຈل͜ຈ༽ノ ʀᴀɪsᴇ ᴜʀ ᴅᴏɴɢᴇʀs ヽ༼ຈل͜ຈ༽ノ
Report Abuse
manofthebase44 is not online. manofthebase44
Joined: 14 Feb 2012
Total Posts: 2221
18 Jul 2013 12:57 PM
Level 4 there kiddo please learn what it is!
Report Abuse
OTNavmesh is not online. OTNavmesh
Joined: 14 Jul 2013
Total Posts: 602
18 Jul 2013 12:58 PM
@manofthenobs

you shouldn't really be using exploits anyway
so enjoy your ban and everything yeah

ヽ༼ຈل͜ຈ༽ノ ʀᴀɪsᴇ ᴜʀ ᴅᴏɴɢᴇʀs ヽ༼ຈل͜ຈ༽ノ
Report Abuse
manofthebase44 is not online. manofthebase44
Joined: 14 Feb 2012
Total Posts: 2221
18 Jul 2013 12:59 PM
#Kid, do one yeah!
Report Abuse
evev3 is not online. evev3
Joined: 04 Dec 2010
Total Posts: 4637
18 Jul 2013 12:59 PM
http://www.youtube.com/watch?v=gENVB6tjq_M
Report Abuse
manofthebase44 is not online. manofthebase44
Joined: 14 Feb 2012
Total Posts: 2221
18 Jul 2013 01:04 PM
Shut up!
Report Abuse
OTNavmesh is not online. OTNavmesh
Joined: 14 Jul 2013
Total Posts: 602
18 Jul 2013 01:07 PM
http://www.youtube.com/watch?v=YhkNLHictW8

ヽ༼ຈل͜ຈ༽ノ ʀᴀɪsᴇ ᴜʀ ᴅᴏɴɢᴇʀs ヽ༼ຈل͜ຈ༽ノ
Report Abuse
manofthebase44 is not online. manofthebase44
Joined: 14 Feb 2012
Total Posts: 2221
18 Jul 2013 01:37 PM
http://www.youtube.com/watch?v=60U1MnzDJKs
Report Abuse
Pteranodon is not online. Pteranodon
Joined: 31 Oct 2009
Total Posts: 8384
18 Jul 2013 01:38 PM
You're still not cool. Go back to the complex.

E=mc². Now quit asking.
Report Abuse
OTNavmesh is not online. OTNavmesh
Joined: 14 Jul 2013
Total Posts: 602
18 Jul 2013 01:41 PM
@OP

oh, please.
10 hour videos are for idiots

ヽ༼ຈل͜ຈ༽ノ ʀᴀɪsᴇ ᴜʀ ᴅᴏɴɢᴇʀs ヽ༼ຈل͜ຈ༽ノ
Report Abuse
DeadzoneAaron is not online. DeadzoneAaron
Joined: 24 May 2013
Total Posts: 731
18 Jul 2013 01:44 PM
lol skid

CHING CHONG PING LING
Report Abuse
JustAnotherSpamAlt is not online. JustAnotherSpamAlt
Joined: 27 Nov 2009
Total Posts: 1100
18 Jul 2013 01:47 PM
"level 4"

so do they have levels now

well guess what no one cares ODer

BEST OTER CHOICE AWARDS - http://challonge.com/favoriterobloxoter, /oAO40UR.jpg
Report Abuse
manofthebase44 is not online. manofthebase44
Joined: 14 Feb 2012
Total Posts: 2221
18 Jul 2013 02:17 PM
Level 4 = place steal, #Noobs shut up...!
Report Abuse
Pteranodon is not online. Pteranodon
Joined: 31 Oct 2009
Total Posts: 8384
18 Jul 2013 02:18 PM
Stop using hashtags you idiot. You're not on Twitter.

E=mc². Now quit asking.
Report Abuse
danipie2 is not online. danipie2
Joined: 06 Sep 2012
Total Posts: 38572
18 Jul 2013 02:19 PM
[ Content Deleted ]
Report Abuse
69Rule34 is not online. 69Rule34
Joined: 11 Jul 2013
Total Posts: 63
18 Jul 2013 02:20 PM
Hacking is for kids who think there cool. AKA: manofthebase44
Report Abuse
danipie2 is not online. danipie2
Joined: 06 Sep 2012
Total Posts: 38572
18 Jul 2013 02:24 PM
[ Content Deleted ]
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Club Houses » Off Topic
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image