Documentation Index
Fetch the complete documentation index at: https://mintlify.com/nnaridz/RbxGenie/llms.txt
Use this file to discover all available pages before exploring further.
Description
Returns property values for a specific instance. This tool attempts to read a set of common properties that exist across many Roblox classes. Only properties that exist and are readable on the instance will be returned.HTTP Endpoint
Request Parameters
Path to the instance. Examples:
"Workspace.Part", "ReplicatedStorage.Config"Response Format
The resolved path to the instance
The class name of the instance
Dictionary of property names to serialized values. Common properties checked include:
- Basic:
Name,Parent,ClassName,Archivable - Spatial:
Position,Size,CFrame,Rotation - Visual:
Color,BrickColor,Material,Transparency - Physical:
Anchored,CanCollide - UI:
BackgroundColor3,TextColor3,Text,Font,TextSize,Visible,ZIndex,BorderSizePixel - Scripts:
Source,Disabled,RunContext
Error message if path resolution failed
Example
Implementation Details
FromInstanceTools.lua:170-192:
- Uses
PathResolver.resolve()to find the instance - Attempts to read common properties using
pcall - Only includes properties that successfully read
- Uses
ValueSerializer.toJSON()to convert Roblox types to JSON-friendly format