Unexpected behavior when printing instances in roblox studio

Currently if you print an instance in studio, you have the ability to click it and it will select the instance in the explorer for you. However if you print an instance in a for loop with instances and click a specific instance in the output, it will always select all instances instead of the instance you clicked on in the output.

for _,instance in ipairs(workspace:GetChildren()) do
	print(instance)
end

-- This code will select all instances inside of workspace once you click on one of the instances in the output

.

2 Likes

i’ve never had this issue
maybe you should try reinstalling studio

1 Like

Try to run the code and see if you get the same result.

1 Like

i already copied and pasted your for loop into my output to see if it’s a new bug

1 Like

Thanks for the report! We’ll follow up when we have an update for you.

1 Like

Hi, the bug does not occur for me anymore.

1 Like

Unfortunately… the bug does still occur under other circumstances (if you print multiple Instances in the same print statement).

Fortunately, I have a fix for it coming in the first release after the holiday break.

1 Like