0% found this document useful (0 votes)
153 views15 pages

10 04 2023 - 17 07 44 - Crash

The document contains technical information from an error log, including error codes, memory addresses, and a stack trace listing the modules and addresses where the error occurred. It lists the modules KERNELBASE.dll, RobloxPlayerBeta.exe, atlthunk.dll, USER32.dll, KERNEL32.DLL, and ntdll.dll in the stack trace, indicating the error originated in the RobloxPlayerBeta executable and involved these Windows system libraries.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
153 views15 pages

10 04 2023 - 17 07 44 - Crash

The document contains technical information from an error log, including error codes, memory addresses, and a stack trace listing the modules and addresses where the error occurred. It lists the modules KERNELBASE.dll, RobloxPlayerBeta.exe, atlthunk.dll, USER32.dll, KERNEL32.DLL, and ntdll.dll in the stack trace, indicating the error originated in the RobloxPlayerBeta executable and involved these Windows system libraries.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 15

[Code = 0xE06D7363]

[ExceptSymbol = class std::runtime_error]


[Eip = 0x776B7B8E]
[Eax = 0x00D8F360]
[Ebx = 0x19930520]
[Ecx = 0x00000003]
[Edx = 0x00000000]
[Esi = 0x00000000]
[Edi = 0x046425BC]
[Ebp = 0x00D8FDF0]
[Esp = 0x00D8FDE8]
[Dll Base = 0x00000000]

[File: UnkFile] [Module: KERNELBASE.dll] [RebaseAddr: 0x0052E4F2]


[BaseAddr: 0x769A0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x02647120]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00C3288A]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00C304AD]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x01DCAB27]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x01DCA23D]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00AD8917]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00ADB57D]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x00AEBDF7]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x0070878C]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: atlthunk.dll] [RebaseAddr: 0x00401836]
[BaseAddr: 0x741C0000]
[File: UnkFile] [Module: USER32.dll] [RebaseAddr: 0x004410EB]
[BaseAddr: 0x75B70000]
[File: UnkFile] [Module: USER32.dll] [RebaseAddr: 0x004380AA]
[BaseAddr: 0x75B70000]
[File: UnkFile] [Module: USER32.dll] [RebaseAddr: 0x00435E1A]
[BaseAddr: 0x75B70000]
[File: UnkFile] [Module: USER32.dll] [RebaseAddr: 0x00435BE0]
[BaseAddr: 0x75B70000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x0071B8EF]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: RobloxPlayerBeta.exe] [RebaseAddr: 0x02643F52]
[BaseAddr: 0x00DE0000]
[File: UnkFile] [Module: KERNEL32.DLL] [RebaseAddr: 0x004200F9]
[BaseAddr: 0x76230000]
[File: UnkFile] [Module: ntdll.dll] [RebaseAddr: 0x00467BBE]
[BaseAddr: 0x77650000]
[File: UnkFile] [Module: ntdll.dll] [RebaseAddr: 0x00467B8E]
[BaseAddr: 0x77650000]
if cloneref then
-- Written by ShowerHead & IDev

repeat wait() until game:IsLoaded()

local old_require = getrenv().require


local setidentity = set_thread_context
local a = raw_http_add_header
local raw_request_backup = raw_request;

getgenv().require = function(script)
local old_identity = setidentity(2)
local success, err = pcall(old_require, script)
setidentity(old_identity)
assert(success, err)

return err
end

getgenv().request = newcclosure(function(b)
if typeof(b) ~= "table" then
error("Bad argument to 'http_request' (#1) | Expected table.")
end

local ReqUrl = b.Url

if typeof(ReqUrl) ~= "string" then


error("Bad argument to 'http_request' Url Field, expected string.")
end

local ReqMethod = b.Method

if typeof(ReqMethod) ~= "string" then


ReqMethod = "GET"
end

if b.Headers then
for c, d in pairs(b.Headers) do
a(c, d, true)
end
end

if b.Cookies then
for c, d in pairs(b.Cookies) do
a(c, d, false)
end
end

return raw_request_backup(b, ReqUrl, ReqMethod);


end)

getgenv().raw_request = nil
getgenv().raw_request_backup = nil

local exploit = identifyexecutor();

local exploit_env_tbl = {
Base64 = {
Encode = base64_encode;
Decode = base64_decode;
};
crypt = crypt;
request = request;
set_thread_identity = set_thread_identity;
get_thread_identity = get_thread_identity;
write_clipboard = setclipboard;
queue_on_teleport = queue_on_teleport;
protect_gui = gethui;
unprotect_gui = function() end;
is_beta = function() return false end;
cache_replace = cache.replace;
cache_invalidate = cache.invalidate;
is_cached = cache.iscached;
}

function exploit_env_tbl:LoadAsync(url)
return loadstring(game:HttpGetAsync(url))()
end

setreadonly(exploit_env_tbl, true)

if exploit ~= "WeAreDevs" then


getgenv().firesignal = newcclosure(function(signal, ...)
assert(signal, "i want signal");
for i,v in pairs(getconnections(signal)) do
v.Function(...)
end
end)
end

if exploit == "Fluxus" or exploit == "Aspect" or exploit == "Evon" or exploit


== "Trigon" or exploit == "Valyse" then
getgenv().Fluxus = exploit_env_tbl;
getgenv().fluxus = exploit_env_tbl;
elseif exploit == "OxygenU" then
getgenv().Oxygen = exploit_env_tbl;
end

getgenv().http =
{
request = request;
}

getgenv().raw_http_add_header = nil
getgenv().http_request = request

if auto_execute_init then
pcall(auto_execute_init)
end

getgenv().auto_execute_init = nil;

local exploit, name = identifyexecutor()


if ename == "Linux" then

Parent=Instance.new("ScreenGui")Parent.Parent=game:GetService("CoreGui").RobloxGui;
Parent.Name="NiggaView"Parent.IgnoreGuiInset=true;local a=math.floor;local
b={Visible=true,Transparency=true,Color=true,Thickness=true}local
c={PointA=true,PointB=true,PointC=true,PointD=true,A=1,B=2,C=3,D=4}local function
e()local
f={newDrawing("Line"),newDrawing("Line"),newDrawing("Line"),newDrawing("Line")}loca
l g;g=setmetatable({Remove=function(self)setmetatable(g,{})self.Remove=nil;for
h=1,4 do f[h]:Remove()end end},{__newindex=function(self,i,j)if b[i]then for h=1,4
do f[h][i]=j end;return end;local k=c[i]if k then k=c[tostring(i):sub(-
1)]f[k].From=j;f[k+1-a(k/4)*4].To=j;return end end})return g end;local function
l(m,n,o)local p=2;if not n then n=UDim2.new(0,0,0,0)else
n=UDim2.new(0,n.X,0,n.Y)end;if not m then m=UDim2.new(0,0,0,0)else
m=UDim2.new(0,m.X,0,m.Y)end;local q,r=n.X.Offset-m.X.Offset,n.Y.Offset-
m.Y.Offset;local h=(q*q+r*r)^.5;local
s=math.atan2(r,q)o.Size=UDim2.new(0,h,0,p)local
t,u=0.5*(m.X.Offset+n.X.Offset),0.5*(m.Y.Offset+n.Y.Offset)o.Position=UDim2.new(0,t
-0.5*h,0,u-0.5*p)o.Rotation=math.deg(s)o.BorderSizePixel=0;return o
end;getgenv().Drawing={}make_writeable(Drawing)Parent=Instance.new("ScreenGui")Pare
nt.Parent=game:GetService("CoreGui").RobloxGui;Parent.Name="NiggaView"Parent.Ignore
GuiInset=true;local function l(m,n,o)local p=2;if not n then
n=UDim2.new(0,0,0,0)else n=UDim2.new(0,n.X,0,n.Y)end;if not m then
m=UDim2.new(0,0,0,0)else m=UDim2.new(0,m.X,0,m.Y)end;local q,r=n.X.Offset-
m.X.Offset,n.Y.Offset-m.Y.Offset;local h=(q*q+r*r)^.5;local
s=math.atan2(r,q)o.Size=UDim2.new(0,h,0,p)local
t,u=0.5*(m.X.Offset+n.X.Offset),0.5*(m.Y.Offset+n.Y.Offset)o.Position=UDim2.new(0,t
-0.5*h,0,u-0.5*p)o.Rotation=math.deg(s)o.BorderSizePixel=0;return o
end;Drawing.Fonts={}Drawing.Fonts.Plex=0;Drawing.Fonts.Monospace=1;Drawing.Fonts.Sy
stem=2;Drawing.Fonts.UI=3;Drawing.new=newcclosure(function(v)if v=="Line"then local
w={}local x=Instance.new("Frame",Parent)x.ZIndex=3000;return setmetatable({},
{__index=function(self,y)if y=="Remove"then x:Destroy()return function()end
end;return w[y]end,__newindex=function(self,y,z)w[y]=z;if y=="Visible"then
x.Visible=z end;if y=="Color"then x.BackgroundColor3=z end;if y=="Transparency"then
x.BackgroundTransparency=math.clamp(1-z,0,1)end;if y=="From"then
d=l(w.From,w.To,x)return nil end;if y=="To"then d=l(w.From,w.To,x)return nil end
end})end;if v=="Circle"then local A={}local
B=Instance.new("Frame",Parent)B.BorderSizePixel=0;B.AnchorPoint=Vector2.new(0.5,0.5
)Instance.new("UICorner",B).CornerRadius=UDim.new(1,0)return setmetatable({},
{__index=function(self,y)if y=="Remove"then return function()B:Destroy()end
end;return A[y]end,__newindex=function(self,y,z)A[y]=z;if y=="Visible"then
B.Visible=z end;if y=="Transparency"then B.BackgroundTransparency=1-z end;if
y=="Color"then B.BackgroundColor3=z end;if y=="Position"then
B.Position=UDim2.new(0,z.X,0,z.Y)end;if y=="Radius"then
B.Size=UDim2.new(0,z*2,0,z*2)end end})end;if v=="Text"then local C={}local
D=Instance.new("TextLabel",Parent)D.BorderSizePixel=0;D.AnchorPoint=Vector2.new(0.5
,0.5)return setmetatable({},{__index=function(self,y)if y=="Remove"then return
function()D:Destroy()end end;return C[y]end,__newindex=function(self,y,z)C[y]=z;if
y=="Visible"then D.Visible=z end;if y=="Color"then D.TextColor3=z end;if
y=="Position"then D.Position=UDim2.new(0,z.X,0,z.Y)end;if y=="Transparency"then
D.TextTransparency=math.clamp(1-z,0,1)end;if y=="Size"then D.TextSize=z-10 end;if
y=="Text"then D.Text=z end end})end;if v=="Quad"then return e()end;if
v=="Square"then local E={}local
F=Instance.new("Frame",Parent)F.BorderSizePixel=0;return setmetatable({},
{__index=function(self,y)if y=="Remove"then return function()F:Destroy()end
end;return E[y]end,__newindex=function(self,y,z)E[y]=z;if y=="Visible"then
E.Visible=true;F.Visible=z end;if y=="Color"then F.BackgroundColor3=z end;if
y=="Transparency"then F.BackgroundTransparency=math.clamp(1-z,0,1)end;if
y=="Position"then F.Position=UDim2.new(0,z.X,0,z.Y)end;if y=="Size"then
F.Size=UDim2.new(0,z.X,0,z.Y)end end})end end)
end

return;
end

-- Written by ShowerHead & IDev

repeat wait() until game:IsLoaded()


local old_require = getrenv().require
local setidentity = set_thread_context
local a = raw_http_add_header
local raw_request_backup = raw_request;

getgenv().require = function(script)
local old_identity = setidentity(2)
local success, err = pcall(old_require, script)
setidentity(old_identity)
assert(success, err)

return err
end

local settings = settings();


local getfflag_bk = clonefunc(settings.GetFFlag)
local reg = clonefunc(getreg)

getgenv().getfflag = newcclosure(function(flag)
return getfflag_bk(settings, flag)
end)

getgenv().getinstances = newcclosure(function()
local Table = {}
for i,v in pairs(reg()) do
if type(v) == "table" then
for I,V in pairs(v) do
if typeof(V) == "Instance" then
table.insert(Table, V)
end
end
end
end
return Table
end)

getgenv().getnilinstances = newcclosure(function()
local Table = {}
for i,v in pairs(reg()) do
if type(v) == "table" then
for I,V in pairs(v) do
if typeof(V) == "Instance" and V.Parent == nil then
table.insert(Table, V)
end
end
end
end
return Table
end)

getgenv().getscripts = newcclosure(function()
local ret = {}
for i,v in pairs(getinstancecache()) do
if v.ClassName == "ModuleScript" or v.ClassName == "LocalScript" then
table.insert(ret, v)
end
end
return ret
end)
getgenv().get_nil_instances = getnilinstances

local upval,upval1,upval2,upval3,upval4,upval5,upval6,upval7,upval8,upval9,upval10

if raw_request_counter then
local get_request_id = raw_request_counter;
local raw_async_response_backup = raw_async_response

getgenv().request = function(b)
local upva,upva1,upva2, upva3, upva4, upva5, upva6, upva7, upva8, upva9,
upva10 = upval, upval1, upval2, upval3, upval4, upval5, upval6, upval7,upval8,
upval9, upval10

if typeof(b) != "table" then


error("Bad argument to 'http_request' (#1) | Expected table.")
end

local ReqUrl = b.Url

if typeof(ReqUrl) != "string" then


error("Bad argument to 'http_request' Url Field, expected string.")
end

local ReqMethod = b.Method

if typeof(ReqMethod) != "string" then


ReqMethod = "GET"
end

if b.Headers then
for c, d in pairs(b.Headers) do
a(c, d, true)
end
end
if b.Cookies then
for c, d in pairs(b.Cookies) do
a(c, d, false)
end
end

local request_count = tostring(get_request_id() + 1);

raw_request_backup(b, ReqUrl, ReqMethod)

local url = request_count


local result = raw_async_response_backup(url)

while result == url do


task.wait()
result = raw_async_response_backup(url)
end

return result;
end
getgenv().raw_request_counter = nil
elseif raw_request_count then
local get_request_id = raw_request_count;
local raw_async_response_backup = raw_async_response
getgenv().request = function(b)
local upva,upva1,upva2, upva3, upva4, upva5, upva6, upva7, upva8, upva9,
upva10 = upval, upval1, upval2, upval3, upval4, upval5, upval6, upval7,upval8,
upval9, upval10
if b.Headers then
for c, d in pairs(b.Headers) do
a(c, d, true)
end
end
if b.Cookies then
for c, d in pairs(b.Cookies) do
a(c, d, false)
end
end

raw_request_backup(b)

local url = b.Url


local result = raw_async_response_backup(url)

while result == url do


task.wait()
result = raw_async_response_backup(url)
end

return result;
end
getgenv().raw_request_count = nil
else
getgenv().request = newcclosure(function(b)
if typeof(b) != "table" then
error("Bad argument to 'http_request' (#1) | Expected table.")
end

local ReqUrl = b.Url

if typeof(ReqUrl) != "string" then


error("Bad argument to 'http_request' Url Field, expected string.")
end

local ReqMethod = b.Method

if typeof(ReqMethod) != "string" then


ReqMethod = "GET"
end

if b.Headers then
for c, d in pairs(b.Headers) do
a(c, d, true)
end
end

if b.Cookies then
for c, d in pairs(b.Cookies) do
a(c, d, false)
end
end
return raw_request_backup(b, ReqUrl, ReqMethod);
end)
end

getgenv().raw_request = nil
getgenv().raw_request_backup = nil

local exploit = identifyexecutor();

if exploit != "WeAreDevs" then


getgenv().syn_getinstances = getinstances
getgenv().syn_getfflag = getfflag

getgenv().firesignal = newcclosure(function(signal, ...)


assert(signal, "i want signal");
for i,v in pairs(getconnections(signal)) do
v.Function(...)
end
end)

getgenv().LoadLibrary = newcclosure(function(x)
return loadstring(game:HttpGet("https://raw.githubusercontent.com/Roblox/
Core-Scripts/master/CoreScriptsRoot/Libraries/" .. x .. ".lua", true))()
end)

getgenv().gethui = newcclosure(function()
return game:GetService("CoreGui")
end)

local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' --
You will need this for encoding/decoding
-- encoding
getgenv().base64_encode = newcclosure(function(data)
return ((data:gsub('.', function(x)
local r,b='',x:byte()
for i=8,1,-1 do r=r..(b%2^i-b%2^(i-1)>0 and '1' or '0') end
return r;
end)..'0000'):gsub('%d%d%d?%d?%d?%d?', function(x)
if (#x < 6) then return '' end
local c=0
for i=1,6 do c=c+(x:sub(i,i)=='1' and 2^(6-i) or 0) end
return b:sub(c+1,c+1)
end)..({ '', '==', '=' })[#data%3+1])
end)
-- decoding
getgenv().base64_decode = newcclosure(function(data)
data = string.gsub(data, '[^'..b..'=]', '')
return (data:gsub('.', function(x)
if (x == '=') then return '' end
local r,f='',(b:find(x)-1)
for i=6,1,-1 do r=r..(f%2^i-f%2^(i-1)>0 and '1' or '0') end
return r;
end):gsub('%d%d%d?%d?%d?%d?%d?%d?', function(x)
if (#x ~= 8) then return '' end
local c=0
for i=1,8 do c=c+(x:sub(i,i)=='1' and 2^(8-i) or 0) end
return string.char(c)
end))
end)

if messagebox and returnmessagebox then


local retbox = returnmessagebox;
local raw_box = messagebox;

getgenv().messagebox = function(text,capt,flag)
local res

sync = game:GetService("RunService").Heartbeat:Connect(function()
sync:Disconnect()

raw_box(text, capt, flag)


end)

res = retbox()
while(res == 404) do
res = retbox()
task.wait()
end

return res
end
getgenv().messageboxasync = messagebox
getgenv().returnmessagebox = nil;
end
end

if rconsoleinput and returnrconsoleinput then


local retinput = returnrconsoleinput;
local raw_input = rconsoleinput;

getgenv().rconsoleinput = function(text,capt,flag)
local res

sync = game:GetService("RunService").Heartbeat:Connect(function()
sync:Disconnect()

raw_input()
end)

res = retinput()
while(res == "ca3c87c828f3ddb9c7c5bbcbd69bd9f4") do
res = retinput()
task.wait()
end

return res
end
getgenv().rconsoleinputasync = rconsoleinput
getgenv().returnrconsoleinput = nil;
end

if cloneinstance then
local reg = getreg;
local cache_list = nil;
getgenv().getinstancecache = newcclosure(function()
if cache_list == nil then
for i, v in pairs(reg()) do
if type(i) == "userdata" and type(v) == "table" and rawget(v,
"__mode") then
for I,V in pairs(v) do
if V == game.Players then
cache_list = v
return v
end
end
end
end
else
return cache_list
end
end)

local instance_cache = getinstancecache


local clone_inst = cloneinstance
function get_cache_key(cache_list, inst)
for i,v in pairs(cache_list) do
if v == inst then
return i
end
end
end

getgenv().cloneref = newcclosure(function(inst)
if type(inst) != "userdata" then
return error("Bad argument to 'cloneref' (#1) | Expected
userdata<Instance>.")
end

if typeof(inst) != "Instance" then


return error("Bad argument to 'cloneref' (#1) | Expected
userdata<Instance>.")
end

local cache_list = instance_cache()


local key = get_cache_key(cache_list,inst);

local old_val = cache_list[key]


cache_list[key] = nil;

local ret = clone_inst(inst)

cache_list[key] = old_val

return ret
end)
getgenv().cloneinstance = nil
end

local hash_func = hideenv_hash


local generatekey_func = hideenv_generatekey
local find_table = table.find

local hash_ciphers =
{
"md5",
"sha1",
"sha224",
"sha256",
"sha384",
"sha512",
"sha3-224",
"sha3_224",
"sha3-256",
"sha3_256",
"sha3-384",
"sha3_384",
"sha3-512",
"sha3_512"
}
setreadonly(hash_ciphers, true)

local crypt_hash = newcclosure(function(alg, data)


if hash_func and alg != nil and typeof(alg) == "string" and data != nil then
-- Since UNC and Synapse has arg flipped, this tries to fix it up

if find_table(hash_ciphers, alg:lower()) ~= nil then -- Following Synapse


Style
return hash_func(alg, data);
else -- Assume it follows UNC style
return hash_func(data, alg):upper(); -- Script-Ware returns it
uppercase, match that.
end
else
return sha384_hash(alg);
end
end)

getgenv().hideenv_hash = nil
getgenv().hideenv_generatekey = nil;

getgenv().base64 =
{
encode = base64_encode;
decode = base64_decode;
};

getgenv().crypt =
{
hash = crypt_hash;
base64encode = base64_encode;
base64decode = base64_decode;
base64_encode = base64_encode;
base64_decode = base64_decode;
base64 = base64;
generatekey = generatekey_func;

custom =
{
hash = crypt_hash;
};
};

if getproperties_raw then
local getproperties_raw_backup = getproperties_raw;
getgenv().getproperties = newcclosure(function(instance)

if typeof(instance) != "Instance" then


return error("Bad argument to 'getproperties' (#1) | Expected
Instance.")
end

local list = {}
for _, v in pairs(getproperties_raw_backup(instance)) do
pcall(function()
list[v] = gethiddenproperty(instance, v)
end)
end

return list
end)
getgenv().getprops = getproperties6

getgenv().getproperties_raw = nil
end

if exploit == "Fluxus" or exploit == "Aspect" or exploit == "Evon" or exploit ==


"Trigon" or exploit == "Valyse" then
getgenv().Fluxus = {
Base64 = {
Encode = base64_encode;
Decode = base64_decode;
};
crypt = crypt;
request = request;
set_thread_identity = set_thread_identity;
get_thread_identity = get_thread_identity;
write_clipboard = setclipboard;
queue_on_teleport = queue_on_teleport;
protect_gui = gethui;
unprotect_gui = function() end;
is_beta = function() return false end;
cache_replace = cache.replace;
cache_invalidate = cache.invalidate;
is_cached = cache.iscached;
}

function Fluxus:LoadAsync(url)
return loadstring(game:HttpGetAsync(url))()
end

setreadonly(Fluxus, true)

getgenv().fluxus = Fluxus;
elseif exploit == "OxygenU" then
getgenv().Oxygen = {
Base64 = {
Encode = base64_encode;
Decode = base64_decode;
};
crypt = crypt;
set_thread_identity = set_thread_identity;
get_thread_identity = get_thread_identity;
write_clipboard = setclipboard;
queue_on_teleport = queue_on_teleport;
protect_gui = gethui;
unprotect_gui = function() end;
request = request;
cache_replace = cache.replace;
cache_invalidate = cache.invalidate;
is_cached = cache.iscached;
}

setreadonly(Oxygen, true)
end

getgenv().http =
{
request = request;
}

local bruh = {}
for i,v in pairs(bit32) do
bruh[i] = v
end

bruh.badd = newcclosure(function(a,b)
assert(a, "Invalid argument to #1, expected number got nil")
assert(b, "Invalid argument to #2, expected number got nil")
return a+b
end)
bruh.bsub = newcclosure(function(a,b)
assert(a, "Invalid argument to #1, expected number got nil")
assert(b, "Invalid argument to #2, expected number got nil")
return a-b
end)

bruh.bdiv = newcclosure(function(a,b)
assert(a, "Invalid argument to #1, expected number got nil")
assert(b, "Invalid argument to #2, expected number got nil")
return a/b
end)

bruh.bmul = newcclosure(function(a,b)
assert(a, "Invalid argument to #1, expected number got nil")
assert(b, "Invalid argument to #2, expected number got nil")
return a*b
end)

getgenv().bit = bruh
getgenv().bit32 = bruh

setreadonly(bit, true)

getgenv().raw_async_response = nil
getgenv().raw_http_add_header = nil
getgenv().http_request = request

if auto_execute_init then
pcall(auto_execute_init)
end
getgenv().auto_execute_init = nil;

if getcallbackvalue then
getgenv().getcallbackvalue = nil
end

local exploit, name = identifyexecutor()


if ename == "Linux" then

Parent=Instance.new("ScreenGui")Parent.Parent=game:GetService("CoreGui").RobloxGui;
Parent.Name="NiggaView"Parent.IgnoreGuiInset=true;local a=math.floor;local
b={Visible=true,Transparency=true,Color=true,Thickness=true}local
c={PointA=true,PointB=true,PointC=true,PointD=true,A=1,B=2,C=3,D=4}local function
e()local
f={newDrawing("Line"),newDrawing("Line"),newDrawing("Line"),newDrawing("Line")}loca
l g;g=setmetatable({Remove=function(self)setmetatable(g,{})self.Remove=nil;for
h=1,4 do f[h]:Remove()end end},{__newindex=function(self,i,j)if b[i]then for h=1,4
do f[h][i]=j end;return end;local k=c[i]if k then k=c[tostring(i):sub(-
1)]f[k].From=j;f[k+1-a(k/4)*4].To=j;return end end})return g end;local function
l(m,n,o)local p=2;if not n then n=UDim2.new(0,0,0,0)else
n=UDim2.new(0,n.X,0,n.Y)end;if not m then m=UDim2.new(0,0,0,0)else
m=UDim2.new(0,m.X,0,m.Y)end;local q,r=n.X.Offset-m.X.Offset,n.Y.Offset-
m.Y.Offset;local h=(q*q+r*r)^.5;local
s=math.atan2(r,q)o.Size=UDim2.new(0,h,0,p)local
t,u=0.5*(m.X.Offset+n.X.Offset),0.5*(m.Y.Offset+n.Y.Offset)o.Position=UDim2.new(0,t
-0.5*h,0,u-0.5*p)o.Rotation=math.deg(s)o.BorderSizePixel=0;return o
end;getgenv().Drawing={}make_writeable(Drawing)Parent=Instance.new("ScreenGui")Pare
nt.Parent=game:GetService("CoreGui").RobloxGui;Parent.Name="NiggaView"Parent.Ignore
GuiInset=true;local function l(m,n,o)local p=2;if not n then
n=UDim2.new(0,0,0,0)else n=UDim2.new(0,n.X,0,n.Y)end;if not m then
m=UDim2.new(0,0,0,0)else m=UDim2.new(0,m.X,0,m.Y)end;local q,r=n.X.Offset-
m.X.Offset,n.Y.Offset-m.Y.Offset;local h=(q*q+r*r)^.5;local
s=math.atan2(r,q)o.Size=UDim2.new(0,h,0,p)local
t,u=0.5*(m.X.Offset+n.X.Offset),0.5*(m.Y.Offset+n.Y.Offset)o.Position=UDim2.new(0,t
-0.5*h,0,u-0.5*p)o.Rotation=math.deg(s)o.BorderSizePixel=0;return o
end;Drawing.Fonts={}Drawing.Fonts.Plex=0;Drawing.Fonts.Monospace=1;Drawing.Fonts.Sy
stem=2;Drawing.Fonts.UI=3;Drawing.new=newcclosure(function(v)if v=="Line"then local
w={}local x=Instance.new("Frame",Parent)x.ZIndex=3000;return setmetatable({},
{__index=function(self,y)if y=="Remove"then x:Destroy()return function()end
end;return w[y]end,__newindex=function(self,y,z)w[y]=z;if y=="Visible"then
x.Visible=z end;if y=="Color"then x.BackgroundColor3=z end;if y=="Transparency"then
x.BackgroundTransparency=math.clamp(1-z,0,1)end;if y=="From"then
d=l(w.From,w.To,x)return nil end;if y=="To"then d=l(w.From,w.To,x)return nil end
end})end;if v=="Circle"then local A={}local
B=Instance.new("Frame",Parent)B.BorderSizePixel=0;B.AnchorPoint=Vector2.new(0.5,0.5
)Instance.new("UICorner",B).CornerRadius=UDim.new(1,0)return setmetatable({},
{__index=function(self,y)if y=="Remove"then return function()B:Destroy()end
end;return A[y]end,__newindex=function(self,y,z)A[y]=z;if y=="Visible"then
B.Visible=z end;if y=="Transparency"then B.BackgroundTransparency=1-z end;if
y=="Color"then B.BackgroundColor3=z end;if y=="Position"then
B.Position=UDim2.new(0,z.X,0,z.Y)end;if y=="Radius"then
B.Size=UDim2.new(0,z*2,0,z*2)end end})end;if v=="Text"then local C={}local
D=Instance.new("TextLabel",Parent)D.BorderSizePixel=0;D.AnchorPoint=Vector2.new(0.5
,0.5)return setmetatable({},{__index=function(self,y)if y=="Remove"then return
function()D:Destroy()end end;return C[y]end,__newindex=function(self,y,z)C[y]=z;if
y=="Visible"then D.Visible=z end;if y=="Color"then D.TextColor3=z end;if
y=="Position"then D.Position=UDim2.new(0,z.X,0,z.Y)end;if y=="Transparency"then
D.TextTransparency=math.clamp(1-z,0,1)end;if y=="Size"then D.TextSize=z-10 end;if
y=="Text"then D.Text=z end end})end;if v=="Quad"then return e()end;if
v=="Square"then local E={}local
F=Instance.new("Frame",Parent)F.BorderSizePixel=0;return setmetatable({},
{__index=function(self,y)if y=="Remove"then return function()F:Destroy()end
end;return E[y]end,__newindex=function(self,y,z)E[y]=z;if y=="Visible"then
E.Visible=true;F.Visible=z end;if y=="Color"then F.BackgroundColor3=z end;if
y=="Transparency"then F.BackgroundTransparency=math.clamp(1-z,0,1)end;if
y=="Position"then F.Position=UDim2.new(0,z.X,0,z.Y)end;if y=="Size"then
F.Size=UDim2.new(0,z.X,0,z.Y)end end})end end)
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy