in my script I want to change the value of an IntValue. is it possible?
when i try to change it directly the IntValue doesn’t show up
1 Like
If I’ve interpreted what you said correctly, to change an IntValue or anything similar to those instances, do
intergerValue.Value = "number here"
in theory that is what I want, but how do i get integerValue?
To get the value you simply just put it like this
intergerValue.Value
When dealing with certain instance names (e.g. numbers/ones with spaces or periods) you have to use [“”] instead of just the . so you would do like Cameras[“2”].Value blah blah blah.
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.