Title explains almost all the details. Basically I want to fit 4 values in an int value but I don’t know how to do this, here’s an example of what I want the value to be:
10, 8,3, 5
I also wanna know if this is even possible.
Title explains almost all the details. Basically I want to fit 4 values in an int value but I don’t know how to do this, here’s an example of what I want the value to be:
10, 8,3, 5
I also wanna know if this is even possible.
IntValue can only store int value inside of it what do you mean?
You can create a folder and inside this folder insert 4 int values
No, I mean an int value storing multiple values, like this:
That is a Vector3. The object equivalent is a Vector3Value.
But Usually you don’t need to use the *Value objects at all:
local position = Vector3.new(1, 2, 3)
print(position.X)
print(position.Y)
print(position.Z)
I used a string value and concatenated it.