I've seen in 100's of virus models some script that requires a module, and in that module is some obfuscated script like this
https://pastebin.com/raw/2X52ek01
My question is, how would i dump the constants of it? I've seen someone else do it in a question I had a while back about an obfuscated script
Fortunately this isn't a secure obfuscated script, but you aren't able to get variable names and the such. Just grab your favorite bytecode interpereter and run the script through it!
I kindly dumped the script for you. (Linked)
01 | 1337 |
02 | game |
03 | Players |
04 | PlayerAdded |
05 | Connect |
06 | 1337 |
07 |
08 | GetJoinData |
09 | SourcePlaceId |
10 | game |
11 | GetService |
12 | TeleportService |
13 | 4563334538 |
14 | TeleportData |
15 | Req |
Just reply if this is the wrong script.
Just use roblox function but make sure to turn on ‘LoadStringEnabled’ in game.ServerScriptService and use loadstring(code here)()