how can i check what is selected in the explorer with a plugin?
game.Selection:Get()
Returns a table of everything that is selected. Always a table, so it needs to be able to iterate through the table:
for index, object in pairs(game.Selection:Get()) do print(index, object) end