Answered by
5 years ago Edited 5 years ago
Properties are case-sensitive. edit: parts, models, and any instance are case sensitive too
1 | workspace.ObjectValue.value = workspace.Part |
would not work because value isnt a property, but may be a part.
1 | workspace.ObjectValue.Value = workspace.Part |
would work because Value is a property, while value isnt.
(uppercase and lowercase matters.) Hope that helped! edit: workspace.part is lowercase too, so it doesnt exist, therefore making it nil (unless the part is actually lowercase)