Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there some site/thing I can use to hide my code?

Asked by
Lakodex 711 Moderation Voter
4 years ago

On ROBLOX. I am attempting to hide my code because of token numbers. I'm thinking for people to buy tokens and use them on my plugin (they don't need too. Just an advertisement in the bottom left corner with my logo will be shown in lite version). I wanted to know if I could hide my scripts? I've used modulescripts and it works perfectly. But the bad part is that they could just go on my profile and take the modulescript and open it. Thanks!

Module script I'm wanting to hide

local module = {
"0000-0000-0000-0000-0000-0000"
}

return module

Server script / Plugin

local token = require(1234567890)
local LiteVersion = false

for i,v in pairs(token) do
    if game.ServerStorage.Token.Value == v then
        LiteVersion = true
    end
end
0
Are you talking about obfuscation? if yes then use ironbrew 2, its a good free obfuscator in my opinion. but since you are using a module script, they still can print out the token value KoruZX 35 — 4y

Answer this question