What do you want to achieve? I’m making a plugin and I want to know how do you get all class names by using a table or a module, and I’m using iGottic’s Dump module but it doesn’t show all classes, read this post for some info
What is the issue? I sadly had to do it manually to get it and use table.insert() to add everything from it
What solutions have you tried so far? I found this one but it doesn’t seem to use modules nor tables
I want to get a list of createable and non-createable instance class names, I tried the dump module I showed above, it only uses a table so I used table.insert() to add it but it showed everything the instance have. I want to get class name for each instance.
local Selection = game:GetService("Selection")
local StudioService = game:GetService("StudioService")
local AutofillHandler = require(script:WaitForChild("AutofillHandler"))
local Instances = {
createable = require(script:WaitForChild("Dump")),
nocreateable = {
"PlayerGui",
"BasePart",
"PVInstance",
"Instance"
}
}