print("--//Made with Zfuscator\\--")

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()

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: