rbx-dom is a collection of cross-platform libraries that enables any software to interact with Roblox instances.
Documentation about the project is hosted at dom.rojo.space.
Weakly-typed Roblox DOM implementation. Defines types for representing instances and properties on them.
Contains Roblox's value types like Vector3
and NumberSequence
. Used by crates like rbx_dom_weak and a future rbx_dom_strong crate to let them share types and conversions.
Serializer and deserializer for for Roblox's XML model and place formats, rbxmx
and rbxlx
.
Serializer and deserializer for for Roblox's binary model and place formats, rbxm
and rbxl
.
Roblox reflection types for working with Instances in external tooling.
Bundled reflection database using types from rbx_reflection. Intended for users migrating from rbx_reflection 4.x and users who need reflection information statically.
Command line utility to convert and debug Roblox model files.
Roblox Lua implementation of DOM APIs, allowing Instance reflection from inside Roblox. Uses a data format that's compatible with rbx_dom_weak to facilitate communication with applications outside Roblox about instances.
Property Type | Example Property | rbx_types | rbx_dom_lua | rbx_xml | rbx_binary |
---|---|---|---|---|---|
Axes | ArcHandles.Axes |
✔ | ✔ | ✔ | ✔ |
BinaryString | Terrain.MaterialColors |
✔ | ➖ | ✔ | ✔ |
Bool | Part.Anchored |
✔ | ✔ | ✔ | ✔ |
BrickColor | Part.BrickColor |
✔ | ✔ | ✔ | ✔ |
CFrame | Camera.CFrame |
✔ | ✔ | ✔ | ✔ |
Color3 | Lighting.Ambient |
✔ | ✔ | ✔ | ✔ |
Color3uint8 | Part.BrickColor |
✔ | ✔ | ✔ | ✔ |
ColorSequence | Beam.Color |
✔ | ✔ | ✔ | ✔ |
Content | Decal.Texture |
✔ | ✔ | ✔ | ✔ |
Enum | Part.Shape |
✔ | ✔ | ✔ | ✔ |
Faces | Handles.Faces |
✔ | ✔ | ✔ | ✔ |
Float32 | Players.RespawnTime |
✔ | ✔ | ✔ | ✔ |
Float64 | Sound.PlaybackLoudness |
✔ | ✔ | ✔ | ✔ |
Int32 | Frame.ZIndex |
✔ | ✔ | ✔ | ✔ |
Int64 | Player.UserId |
✔ | ✔ | ✔ | ✔ |
NumberRange | ParticleEmitter.Lifetime |
✔ | ✔ | ✔ | ✔ |
NumberSequence | Beam.Transparency |
✔ | ✔ | ✔ | ✔ |
OptionalCoordinateFrame | Model.WorldPivotData |
✔ | ❌ | ✔ | ✔ |
PhysicalProperties | Part.CustomPhysicalProperties |
✔ | ✔ | ✔ | ✔ |
ProtectedString | ModuleScript.Source |
✔ | ✔ | ✔ | ✔ |
Ray | RayValue.Value |
✔ | ✔ | ✔ | ✔ |
Rect | ImageButton.SliceCenter |
✔ | ✔ | ✔ | ✔ |
Ref | Model.PrimaryPart |
✔ | ✔ | ✔ | ✔ |
Region3 | N/A | ✔ | ✔ | ❌ | ❌ |
Region3int16 | Terrain.MaxExtents |
✔ | ✔ | ❌ | ❌ |
SharedString | N/A | ✔ | ✔ | ✔ | ✔ |
String | Instance.Name |
✔ | ✔ | ✔ | ✔ |
UDim | UIListLayout.Padding |
✔ | ✔ | ✔ | ✔ |
UDim2 | Frame.Size |
✔ | ✔ | ✔ | ✔ |
Vector2 | ImageLabel.ImageRectSize |
✔ | ✔ | ✔ | ✔ |
Vector2int16 | N/A | ✔ | ✔ | ✔ | ❌ |
Vector3 | Part.Size |
✔ | ✔ | ✔ | ✔ |
Vector3int16 | TerrainRegion.ExtentsMax |
✔ | ✔ | ✔ | ✔ |
QDir | Studio.Auto-Save Path |
⛔ | ⛔ | ⛔ | ⛔ |
QFont | Studio.Font |
⛔ | ⛔ | ⛔ | ⛔ |
✔ Implemented | ❌ Unimplemented | ➖ Partially Implemented | ⛔ Never
This project has unveiled a handful of interesting bugs and quirks in Roblox!
GuiMain.DisplayOrder
is uninitialized, so its default value isn't stableMaxPlayersInternal
andPreferredPlayersInternal
onPlayers
are scriptable and accessible by the command bar- Instantiating a
NetworkClient
will turn your edit session into a game client and stop you from sending HTTP requests ContentProvider.RequestQueueSize
is mistakenly marked as serializable- Trying to invoke
game:GetService("Studio")
causes a unique error:singleton Studio already exists
Color3
properties not serialized asColor3uint8
would have their colors mistakenly clamped in the XML place format. This was bad for properties onLighting
.ColorSequence
's XML serialization contains an extra value per keypoint that was intended to be used as an envelope value, but was never implemented.
rbx-dom supports Rust 1.57.0 and newer. Updating the minimum supported Rust version will only be done when necessary, but may happen as part of minor version bumps.
rbx-dom is available under the MIT license. See LICENSE.txt for details.