
77.9k Views
Delta keyboard cracked by Ata
Universal Script ๐Uploaded by 1 year ago
Please login to perform these actions:
Description
It's universal mobile keyboard script [NOT MY SCRIPT]
Comments
3

Offline
patchedval 1 year ago - Edited
how did bro cracked a free script
Offline
Fratele 1 year ago - Edited
@sigmaskibidi LMAO
Offline
wjGQiwhUsbUsi9 1 year ago
You need to remember that delta keyboard is a entire gui just a gui wrapper for keypress and keyrelease.
So if we want to deobfuscate delta keyboard, we will make a fake Instance.new (Instance is a table, new is a function) and intercept incoming calls, and then return a metatable __index and __newindex now when it gets our metatable and tries to add .Font = Enum or .Parent = , it will show up in your hooked new function on __newindex or __index if it tried to check something like print(g.Parent)
And then you fake Enum too.
Then you make a metatable redirector to a fake TweenService and intercept these calls too.
So like a sample below here:
```
local tween = {
Create = function(self, ...)
print(...)
return {
Play = function()
print("Tween pla*")
end
}
end
}
game = {
GetService = function(_, o)
if o == "TweenService" then
return tween
end
return nil
end
}
local tweenHere = game:GetService("TweenService"):Create("HELLO WORD")
-- outputs intercepted call
-- "HELLO WORD"
tweenHere:Play()
-- outputs Tween pla*
```
"Obfuscators" will never be secure, no matter how many layer there is.
Don't forget to make the table behave like a "Instance"
![[๐ RELEASE] Anime Astral Simulator](/images/script/113236157544232-1780333729144.png)
Voxle Hub
