Where can I get all types of values that can be stored in properties of Instances?

Inform me if this is the wrong category.
Instances can save different attributes/properties, i.e., every instance has a Parent property whose type is Instance and Name property whose type is string, etc…
Is there a list of all possible types that can be stored inside attributes/properties? Or do I have to make it by myself?

1 Like

The official documentation includes all information about the types. For example, Instance has accessible properties in the image, and the blue word after the colon : indicates the expected type.

As for the methods, the word outside the parenthesis tell us what type of data function returns.

The word Variant means various types, and occasional Void means, well, nothing.

Supported attribute types (source: Instance Attributes | Documentation - Roblox Creator Hub):

image

*An attribute created via a script will automatically set the appropriate type.

Supported value base types

BoolValue BrickColorValue CFrameValue Color3Value IntValue
NumberValue ObjectValue RayValue StringValue Vector3Value

This is probably suitable for #help-and-feedback:scripting-support

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.