So i'm trying to change some object's properties but i only have it's object value stored in an ObjectValue instance. Could i somehow refer to it with it's object value?
You can use objectValue.Value
to get the object. For example if I wanted the name of an object from just an object value, I could use
1 | objectValue.Value.Name |
2 | --or |
3 | local obj = objectValue.Value |
4 | obj.Name |