Simple LUA Obfuscator

Run Settings
LanguageLua
Language Version
Run Command
--[[ -- For people who are new to obfuscating, here is a easy and simple way to obfuscate your scripts! -- By M0_0Y on ROBLOX ]] local throw_away = {} local SCRIPT_TO_OBFUSCATE = [[ print(" YOUR SCRIPT HERE!! ") ]] function GetBytes() for num = 1, #SCRIPT_TO_OBFUSCATE do throw_away[num] = string.byte(SCRIPT_TO_OBFUSCATE, num) end end function ConvertString() local string_buffer = ""; for obj = 1, #throw_away do string_buffer = string_buffer .. "\\" .. throw_away[obj] end return string_buffer end function Obfuscate() GetBytes() local str = ConvertString() return print('loadstring("' .. str .. '")()') end Obfuscate()
Editor Settings
Theme
Key bindings
Full width
Lines