MemoryPenguin / RbxGitHubCloner

Clone a GitHub repository to ROBLOX Studio.
MIT License
7 stars 2 forks source link

Clone .rbxmx files #2

Open MemoryPenguin opened 7 years ago

MemoryPenguin commented 7 years ago

Clone .rbxmx files in the same way as .lua and .rbxs.

Would have to parse .rbxmx files, then convert them to an instance tree.

MemoryPenguin commented 7 years ago

Notes:

MemoryPenguin commented 7 years ago

Update on this: I sat down and put some stuff together; I have a deserializer working for most Roblox types.

There are two exceptions:

Neither of these can be deserialized easily in Lua. It is theoretically possible to deserialize these objects but it would necessitate reverse-engineering the binary blobs that their data is stored in, then creating the objects from scratch using the data. This is a little too cumbersome for a published solution, though.