Skip to content

Instantly share code, notes, and snippets.

@Direnta
Created April 25, 2018 16:32
Show Gist options
  • Save Direnta/16dc8792e5fc9bbfd7507830fbbdb493 to your computer and use it in GitHub Desktop.
Save Direnta/16dc8792e5fc9bbfd7507830fbbdb493 to your computer and use it in GitHub Desktop.
Jailbreak MemeCorrupt Loader Script
local mt = getrawmetatable(game);
setreadonly(mt, false);
local index = mt.__index;
mt.__index = newcclosure(function(self, i)
if i == "JSONDecode" then
return function(selff, k)
if k and type(k) == "string" and k:lower():match("sage") then
return {Status = 0; Message = "User is whitelisted!"};
elseif k and type(k) == "string" and not k:lower():match("sage") then
local k = game:GetService("HttpService"):JSONDecode(game:HttpGet("https://pastebin.com/raw/Yuj3n18C", true));
k.PlaySound = "";
return k;
else
return index(self, i)(selff, k);
end;
end;
elseif i == "HttpGet" then
return function(selff, k)
if k and type(k) == "string" and k:lower():match("liquid") then
return "EzJIATAiDRkbdApjSnMrUkVCVFVRFw4aYUVRciBpcyB3IQMmIS8QHxwzVHJELGY3NjE1MjQ1NDg0NjQAAAAAAAA=";
end;
return index(self, i)(selff ,k);
end;
elseif i == "HttpPost" then
return function()
return "";
end;
end;
return index(self, i);
end);
loadstring(game:HttpGet("https://gist.githubusercontent.com/Direnta/775a71c89b7854fa38ec3bac7ce6d337/raw/86d0e94d2017e10ee60c76e1d11645fe72b294ce/JailbreakCorruptMain.lua", true))();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment