property_set
Set any property on a Roblox Instance with automatic type conversion for Vector3, Color3, Enums, and more.
Instructions
Set the value of a property on an Instance. Supports automatic type coercion for Vector3, CFrame, Color3, BrickColor, UDim2, NumberRange, Enums, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | No | The new property value. For Vector3: [X,Y,Z]. For Color3: [R,G,B] (0-1) or "#RRGGBB". For Enum: "Enum.Material.Neon" or "Neon". For boolean/number/string: direct value. | |
| target | Yes | Full path or UUID of the Instance. | |
| property | Yes | Name of the property to set (e.g. "Size", "Anchored", "Color", "Material", "CanCollide"). |