of     1   

Shwerpyyy
#183806413Wednesday, February 17, 2016 4:40 AM GMT

How come if I set the value of an object value, it skips to the last child? ex: workspace.ObjectValue.Value = workspace.LOL print(workspace.ObjectValue.Value) -> LOL Is this supposed to happen? And if it is, does it still work as if it said workspace.LOL?
super10099
#183806482Wednesday, February 17, 2016 4:41 AM GMT

cuz thats the object you set it to.
cofunction
#183806507Wednesday, February 17, 2016 4:42 AM GMT

Thats supposed to happen. A better understanding might be like: local object = game.Workspace.Lol --Represents "Lol" ObjectValue.Value = object ^ same as what you did, get it?
128Gigabytes
#183806950Wednesday, February 17, 2016 4:49 AM GMT

Its not skipping the parent. The objects value is whatever 'LOL' is Its not 'workspace.LOL' its just LOL If you put LOL somewhere else after setting the objectValues value it would still be a reference to LOL.

    of     1