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
objectValue.Value.Name --or local obj = objectValue.Value obj.Name