Hello, I’ve been trying to create a decoder plugin for my scripts, I’ve managed to make it loop through them and get the bytes, but I can’t seem to figure out how to turn them into regular text.
Script:
local pattern = "%b\"\"[^'\']"
local ReturnedString = string.gmatch(game.ServerScriptService.Encoded.Source,pattern)
for i,v in ReturnedString do
local Formatted = string.gsub(i,"[\"%)]","")
print(Formatted)
end
Script I’m going through:
Output: