Skip to content

Serializable Types⚓︎

In Massive Loop Lua followings are serializable:

Basic Types⚓︎

  • Nil1 Serialization Size: 5 Bytes

  • Boolean Serialization Size: 6 Bytes

  • Number Serialization Size: 13 Bytes

  • String Serialization Size: 5 + string size (UTF-8 encoded)

Unity Types⚓︎

Arrays⚓︎

Arrays are also serializable. Serializing arrays happens at element level. If the element is a serializable type from the list above, that element gets properly serialized, otherwise the element gets serialized as a Nil.


  1. There is nothing in the Nil to be serialized, however, a Nil can still show that a variable is not assigned Yet.