Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- UPDATE: i thought it was patched it still works just turn on team create for this to work my bad
- Hi so after david posted dumb update after update i decided to leak my secret way to upload any image to roblox just an image not a decal to roblox so it uploads just a image without a decal i was able to upload many bypasses of any kind and the only thing that stopped me from publishing them was the ai detection that flagged certain images so here's how you can use cheat engine to upload any bypass images
- also i found this by total accident i was hex swapping roblox class objects with unused objects from the roblox api dump tool credits to them
- https://github.com/MaximumADHD/Roblox-API-Dump-Tool?tab=readme-ov-file
- step 1.
- insert a TerrainDetail into the workspace
- step 2.
- check on the speed hack and set the speed to 0 and click apply
- step 3.
- open the lua table on cheat engine and paste the code in and run it
- step 4.
- after the script is done set the speedhack to 1 or disable the speedhack unclick the object and reclick on it now there should be a property called imagedata and u should see it changed just click on the folder icon next to image data and it will tell you to upload a image just select any image and boom its uploaded no moderation required
- NOTE I HAVE NOT DONE THIS IN A WHILE SO IT COULD BE PATCHED AT ANY TIME ALSO HERES PROOF:
- --offensive memes
- https://create.roblox.com/store/asset/97662114080311
- https://create.roblox.com/store/asset/130458561001473
- https://create.roblox.com/store/asset/117419665522970
- https://create.roblox.com/store/asset/138222178656778
- https://create.roblox.com/store/asset/131288337003749
- https://create.roblox.com/store/asset/108548997496538
- --ComedySeizure Memes
- https://create.roblox.com/store/asset/113886064222702
- https://create.roblox.com/store/asset/83189029151966
- https://create.roblox.com/store/asset/115209186734546
- ALSO ALWAYS USE ALT ACCOUNTS WHILE DOING THIS AND IF U DONT FEEL SAFE USE A VPN!
- CREDITS TO THE REPLACE ALL STRINGS SCRIPT FOR CHEAT ENGINE:
- https://cheatengine.org/forum/viewtopic.php?t=576390&sid=e7b56074ff880ff49d69286e968f7d78
- -------COPY CODE BELOW AND FOLLOW INTRUCTIONS ABOVE
- function replaceString(string_in,string_out,ignore_length)
- if (not ignore_length) then
- if (not(string_in and string_out and #string_in >= #string_out)) then
- return print("Not recommended to override shorter string with a longer string");
- end
- end
- local bytes_in = {};
- local bytes_out = {};
- for i=1,(#string_in >= #string_out and #string_in or #string_out) do -- lazy to copy paste same loop for string_out so just looping both and inserting if possible
- if (i <= #string_in) then
- table.insert(bytes_in,string.format("%x", tonumber(string.byte(string.sub(string_in,i,i)))));
- end
- if (i <= #string_out) then
- -- table.insert(bytes_out,'0x' .. string.format("%x", tonumber(string.byte(string.sub(string_out,i,i)))));
- table.insert(bytes_out,tonumber(string.byte(string.sub(string_out,i,i))));
- end
- end
- local object = AOBScan(table.concat(bytes_in," "));
- if object then
- for entry = 0, object.Count -1 do
- writeBytes(object.getString(entry), unpack(bytes_out));
- end
- object.destroy();
- return true
- end
- return false
- end
- replaceString("TerrainDetail","EditableImage",true)
- replaceString("NormalMap","ImageData",true)
- replaceString("ImageDataMap","ImageData",true)
- replaceString("NormalMap","ImageData",true)
- replaceString("NormalMap","ImageData",true)
Advertisement
Add Comment
Please, Sign In to add comment