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:
1 | for index, object in pairs (game.Selection:Get()) do |
2 | print (index, object) |
3 | end |