Currently, when scripting in Luau, indexing of tables does not match between Luau functions and ll. functions. For example, the following return the same values: str = ll.List2String(List,2) and str = List[3] This isn't exactly a bug, both are functioning 'correctly', but it's going to cause some issues. Is there a reasonable solution to this?