input-pipevalue

Functions to get property information from value instances. (IntValue, NumberValue, BoolValue, VectorValue)

  • IntValue

instance get_value_int() -> int

Gets the int value of the instance.

instance set_value_int(int) -> void

Sets the int value of the instance.

  • StringValue

instance get_value_string() -> int

Gets the string value of the instance.

instance set_value_string(string) -> void

Sets the string of the instance.

  • Color3Value

instance get_value_color() -> int

Gets the color value of the instance.

  • NumberValue

instance get_value_float() -> float

Gets the float value of the instance.

instance set_value_float(float) -> void

Sets the float value of the instance.

  • BoolValue

instance get_value_bool() -> bool

Gets the bool of the boolvalue.

instance set_value_bool(bool)

Sets the bool of the instance.

  • VectorValue

instance get_value_vector() vector3

Gets the vector of the instance.

instance set_value_vector(vector3)

Sets the vector of the instance.

  • ObjectValue

instance get_value_object() -> instance

  • Misc

instance get_value_double() -> double

Gets the double value of the instance.

instance set_value_double(double) -> void

Sets the double of the instance.

Example

Last updated