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

How do you create an instance.new brick with a size lower than 1?

Asked by
mruno 20
10 years ago

Hello, I'm trying to create a brick that has the vector3 sizes of 0.2,0.2,2 but when I use the code: missile.Size = Vector3.new(0.2,0.2,2) It just creates a brick with. (1,1,2) How to you get it below 1?

(couldn't find a proper tag, sorry)

1 answer

Log in to vote
0
Answered by 10 years ago
missle.formFactor = "Custom"
missile.Size = Vector3.new(0.2,0.2,2)

:)

0
Thanks :) mruno 20 — 10y
Ad

Answer this question