If the BrickColor picker is open and the instance you are editing is removed, clicking outside the palette to close it causes studio to crash. Clicking inside the palette does not cause a crash.
Steps to reproduce:
- Run the script below
- Begin to select the new part’s BrickColor
- Once the part is removed, click outside the palette
A few seconds later studio will crash.
local part = Instance.new("Part", workspace)
part:GetPropertyChangedSignal("BrickColor"):Connect(function()
part:Destroy()
end)
OS: Win10