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
Retrieves the value of a specific attribute from an instance. Supports all Roblox attribute types including primitives (string, number, boolean) and complex types (Vector3, Color3, CFrame, etc.).Endpoint
Parameters
The path to the instance (e.g., “Workspace.Part” or “ReplicatedStorage.Config”)
The name of the attribute to retrieve
Response
The attribute value. Complex types are serialized as objects with
type and value fields.Error message if the instance path could not be resolved
Complex Type Serialization
Complex Roblox types are serialized as:- Vector3:
{ type: "Vector3", value: [x, y, z] } - Vector2:
{ type: "Vector2", value: [x, y] } - Color3:
{ type: "Color3", value: [r, g, b] } - UDim2:
{ type: "UDim2", value: [xScale, xOffset, yScale, yOffset] } - UDim:
{ type: "UDim", value: [scale, offset] } - NumberRange:
{ type: "NumberRange", value: [min, max] } - CFrame:
{ type: "CFrame", value: [x, y, z, rx, ry, rz, ux, uy, uz, lx, ly, lz] }