SelectRibbonTool crash problems with empty model (Updated)

If you try to change the color or material of a selected model using SelectRibbonTool, Roblox Studio crashes.

Fast repro in the command bar:

-- color crash (select a color when prompted)
local model = Instance.new("Model",workspace)
game.Selection:Set{model}
PluginManager():CreatePlugin():SelectRibbonTool(Enum.RibbonTool.ColorPicker,UDim2.new())
-- material crash (select a material when prompted)
local model = Instance.new("Model",workspace)
game.Selection:Set{model}
PluginManager():CreatePlugin():SelectRibbonTool(Enum.RibbonTool.MaterialPicker,UDim2.new())
2 Likes

UPDATE: I just realized that I reported this incorrectly. There was previously an issue with model ungrouping, but it appears to be patched now. However there is still a crash problem with changing the BrickColor and Material of a part.