The explorer does not show BaseParts
when you query for them.
To replicate, search ClassName:BasePart
Expected behavior
When searching for instances of the type ‘BasePart’ they do not appear in the explorer.
The explorer does not show BaseParts
when you query for them.
To replicate, search ClassName:BasePart
Expected behavior
When searching for instances of the type ‘BasePart’ they do not appear in the explorer.
For superclasses, you must use is:
, not c:
/classname:
, as that is an exact match that doesn’t account for inheritance:
For example, is:LuaSourceContainer
will find everything that can contain Luau code (Script
s, LocalScript
s and ModuleScript
s), while c:LuaSourceContainer
will return nothing as you cannot create one on its own, which is the same thing as searching for c:BasePart
or c:Instance
.
c:
/classname:
checks the .ClassName
property, while is:
calls :IsA
.
This is just an acknowledgment announcement!
We’ve filed a ticket into our internal database for this issue and will start investigating, we will update you when we have further information.
Thanks for flagging!