Object Finder - Plugin for Finding Specific Instances


Introduction


Object Finder is a plugin allows you to search for specific Instances with a specific ClassName, Name, Property, and that Property’s value.

It currently supports strings, numbers, EnumItems, Vector2s, Vector3s, UDims, and UDim2s for the values.

Feel free to comment down any suggestions, or bugs that you may have encountered while using the plugin. Do note that this is not the final release, and things can drastically change.


How To Use


2 Likes

That’s a really good plugin but, I think most of the developers use the command bar to find the object their looking for.

EG: Finding an object with transparency 0.3

for i,v in workspace:GetDescendants() do
   if v:IsA("BasePart") and v.Transparency == .3 then
      local select = {v}
      game.Select:Set(select) -- if I still remember its Game.Select
   end
end

2 Likes

True, but I’m way too lazy to do that (yes, lazy enough to make an entire plugin lol). The plugin allows you to do just that and is way simpler to handle.

But to be also fair, currently it has a lot of limitations. Like the fact that you can’t check for more than one property. Will probably add the feature to do so in the future.

2 Likes

It’s game.Selection :wink:

3 Likes