|
So I found out that if you constantly request something that is roblox locked and then in a seperate script you can turn roblox lock off. I guess if you request something so many times it break roblox locked.
for i=1,9999 do
game.CoreGui:findFirstChild("Nothing") --Requesting something from CoreGui
end
--[[The top loop requests for access to core gui 9999 times, if you copy that script but instead turning off Roblox locked, it works. They obviously must be in seperate scripts.]] |
|
|
This works for anything. If it doesnt work then the scripts probably were not async |
|
NVIJoin Date: 2009-01-11 Post Count: 4744 |
Sounds interesting. I'd test it myself but I don't have Roblox on my laptop. |
|
misgav11Join Date: 2011-04-21 Post Count: 3418 |
huuuu?
pls tell me that can make guest talk.. |
|
|
I havent tried, but you probably could. I hope this gets in the right hands. Sorry if I accidentally showed to much to the open public but theres no other way of showing it to the right people. |
|
AvnerJoin Date: 2007-11-30 Post Count: 3390 |
English? What does it really do. |
|
misgav11Join Date: 2011-04-21 Post Count: 3418 |
i tried it and it get me roblox error :/ |
|
|
Not exactly sure, I think that if theres two requests at the same time one gets denied and one goes through but goes through un filtered? Idk if that makes sense but yeah thats what I think |
|
misgav11Join Date: 2011-04-21 Post Count: 3418 |
did you tested it? |
|
|
Won't that just crash your computer because you did not add a wait() to the loop? |
|
misgav11Join Date: 2011-04-21 Post Count: 3418 |
^no, its not infinite loop |
|
|
No, it will draw lag for less then a milisecond. And yes, it takes a couple of tries to get the scripts async. |
|
MerelyJoin Date: 2010-12-07 Post Count: 17266 |
You're saying that if you have one thread that is running that loop, another thread is able to index the RobloxLocked object and set any of its properties? |
|
|
Yeah, I figured this out awhile ago I just now remembered it. |
|
|
The amount of loops does not matter, I just entered 9999 to give it more of a chance of getting it. |
|
misgav11Join Date: 2011-04-21 Post Count: 3418 |
math.huge? c:
or better yet game:GetService("RunService").Stepped C:? |
|
NVIJoin Date: 2009-01-11 Post Count: 4744 |
Do you really need to put them in separate scripts? Why can't you just try this?
for i=1,100000 do
if pcall(function() game.CoreGui:FindFirstChild("pootis") end) then break end
end
--now, according to you, you have access to game.CoreGui |
|
|
You must turn roblox locked off at percisely the same exact time as you send an invalid request, im guessing it overights the filter for roblox locked? idk. |
|
|
Wait disregard all of this, I had a plugin run this, I forgot plugins have access to that stuff. |
|
misgav11Join Date: 2011-04-21 Post Count: 3418 |
^LOL, i hate you for wasting my 54 seconds of my life. |
|
MerelyJoin Date: 2010-12-07 Post Count: 17266 |
U_U |
|
|
^my response exactly.
~LuaWeaver; Programmer, gamer, developer. |
|
|
|
MettaurSpJoin Date: 2010-03-20 Post Count: 3179 |
Wat pres o3o |
|