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?
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.
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.
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?