Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

I was scripting till i added this script than everything cleared what wrong with this script?

Asked by
natru2 0
8 years ago

xValue = 512 yValue = 100 zValue = 512 script.Parent.Size = Vector3("xValue,yValue,zValue")``

1 answer

Log in to vote
1
Answered by 8 years ago

When inputting a new size, use:

script.Parent.Size = Vector3.new(xValue,yValue,zValue)

Also quotation marks are not needed around the values.

Ad

Answer this question