Can plugins select an item in the Explorer window?

Is it possible for a plugin to make a selection in the Explorer window. For example, can I tell it to select the Baseplate like this?
image

I would like to use this to highlight a script or part when an error occurs, to give feedback to the user without them having to comb through the hierarchy themselves.

Try this:

local Selection = game:GetService("Selection")
Selection:Add(workspace)
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.