Hello! I wanted to share my new resource GeneratorPlus
It protects your STRINGS and EVENT PARAMETERS but you need to use it CORRECTLY
Here is example script:
local generatorplus = require(script.Parent.GeneratorPlus)
generatorplus.SetSeed("testseed123123123123123") -- Provide a seed before using this module
local mystring = "OMG! Is that GeneratorPlus??"
local compiledstring = generatorplus.Compile(mystring)
print(compiledstring) -- Compiled String (UNREADABLE, PROTECTED)
-- PRINTED: !FM3B6#GJ8J5M2J8B*C@Z3B*J8B6N4T8N4Z!Z3B*D1Z!@KX2A7M2Z8Z8
local decompiledstring = generatorplus.Decompile(compiledstring)
print(decompiledstring) -- Decompiled String (READABLE)
-- PRINTED: OMG! Is that GeneratorPlus??
local compiledparams = generatorplus.CompileParams("best,protected,parameters")
print(compiledparams) -- Compiled Params (UNREADABLE, PROTECTED PARAMETERS)
-- PRINTED: S9Z3Z!Z3%QL@G@S9Z3Z!Z3%QI4G@S9Z3Z!Z3%QF@
local decompiledparams = generatorplus.DecompileParams(compiledparams)
print(decompiledparams) -- Compiled Params (READABLE)
-- PRINTED: {[1] = "best", [2] = "protected",[3] = "parameters" }
I know, I am bad at writing resources but i guess it would be useful for someone
Nevermind here is comments from module, i write them into module too
--[[
Made by MonoClassic
Please use this script in BackEnd because it could be malicious in ClientSide
So do not make accessible this module for Clients. (THEY CANNOT READ COMPILED STRING BECAUSE OF SEEDS)
(Put it to ServerScriptService)
module.SetSeed(STRING) -- Provides a seed for you
module.Compile(STRING) -- Compiles a string for you
module.Decompile(COMPILEDSTRING) -- Decompiles string for you
You can use this script if you want to add protection to something like
RemoteEvents! (No longer parameter edited remotevents :3)
(edit: i added functions for that)
module.CompileParams("param1,param2,param3") -- EXAMPLE
module.DecompileParams(COMPILEDPARAMSSTRING) -- EXAMPLE
* it will print: {"param1","param2","param3"}
]]
HERE IS LINK OF MODULE: GeneratorPlus
I am not perfect on everything like writing resource or making resource so i need people’s feedback.