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

[ANSWERED!]How to make a part smaller than 1? [closed]

Asked by
IcyEvil 260 Moderation Voter
9 years ago

See im making a script and im needing the part to be the size .2

But... It won't allow it...

Can anyone help me?

0
Change the part's FormFactor to 'Custom.' Redbullusa 1580 — 9y

Locked by EzraNehemiah_TF2, Redbullusa, and BlueTaslem

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

2 answers

Log in to vote
0
Answered by
Thetacah 712 Moderation Voter
9 years ago
Edited 6 years ago

Hello. this is very simple. Set the parts FormFactor property to 'Custom'. Setting the FormFactors property to Custom allows it to be a lot smaller. (.2 stud)

You can do that like this:

local part = game.Workspace.Partfdsa
part.FormFactor = "Custom"

FormFactor is an Enum, so you could also do it like this:

local part = game.Workspace.Partfdsa
part.FormFactor = Enum.FormFactor.Custom

Cheers.

1
The lowest is 0.2 stud per unit, is it not? Redbullusa 1580 — 9y
0
.1 studs isn't possible to make. Only with a block mesh but other than that, not even custom parts can be .1x.1x.1. EzraNehemiah_TF2 3552 — 9y
0
I know that was a typo. Sorry! Thetacah 712 — 9y
Ad
Log in to vote
1
Answered by
Diitto 230 Moderation Voter
9 years ago

Set the Part's formFactor property to 'Custom', or 3, or Enum.FormFactor.Custom. That allows the part to rescale to 0.1 at minimum.

To go even smaller, you can use meshes, Mesh.Scale, but meshes only change the appearance, not the actual part size.