Overview
Theset_property tool allows you to modify any property of a Roblox instance in Studio. This is the fundamental tool for changing instance properties like Position, Color, Transparency, Size, and more.
Parameters
Path to the instance using dot notation (e.g.,
game.Workspace.Part)Name of the property to set (e.g.,
Position, BrickColor, Transparency)Value to set the property to. Type must match the property’s expected type.
Vector3 Handling
When setting Vector3 properties (Position, Size, Velocity, etc.), use the object format:"10, 5, -20" - this will cause errors.
Data Type Warning
Examples
Setting a simple property
Setting a Vector3 position
Setting a Color3 property
Setting a BrickColor
Setting a boolean property
Use Cases
- Adjusting positions and sizes of parts
- Changing visual properties (color, transparency, material)
- Modifying physics properties (anchored, mass, friction)
- Setting GUI properties (text, size, position)
- Updating script properties
Related Tools
- mass_set_property - Set the same property on multiple instances
- set_relative_property - Modify properties relative to current values
- set_calculated_property - Set properties using formulas