Roblox-File-Format icon indicating copy to clipboard operation
Roblox-File-Format copied to clipboard

`BinaryStringValue.Value` is not saved

Open jiwonz opened this issue 7 months ago • 1 comments

RobloxFiles.BinaryStringValue mapData = new()
{
    Name = "test",
    Value = Encoding.UTF8.GetBytes("TEST"),
    Parent = bin,
};
bin.Save("test.rbxm");

If you check this saved rbxm with lune(rbx-dom), there is no value(empty string), and if you save it as xml so that you can view it with a text editor, the Value property itself is not included.

jiwonz avatar May 19 '25 14:05 jiwonz