Description
Returns information about a Roblox class, including its available properties. This uses the StudioService API to fetch class metadata. Note: This API is only available in Studio edit mode and may not work in all contexts.HTTP Endpoint
Request Parameters
The name of the Roblox class. Examples:
"Part", "Script", "Frame", "RemoteEvent"Response Format
The class name that was queried
Array of property information objects (structure depends on StudioService API)
Information message if the API is unavailable
Example
Implementation Details
FromInstanceTools.lua:279-291:
- Uses
StudioService:GetClassProperties()to fetch class metadata - Wrapped in
pcallfor graceful failure - Returns informative message when API is unavailable
- Only works in Studio edit mode