Resize Increment in parts?
I'm trying to script parts to EXACT sizes and I'm having issues with ResizeIncrement in Part
Its automatically set to 1 and I can't figure out how to change it cause everytime I try it errors and says "can't set value"
Trying to get a new right arm and the size is automatically changed to Vector3.new(1,2.4,1)
01 | Char = game.Workspace.blowup 999 |
03 | local weld = Instance.new( "ManualWeld" ) |
06 | weld.C 0 = CFrame.new() |
07 | weld.C 1 = b.CFrame:inverse() * a.CFrame |
11 | c = Char [ "Right Arm" ] .CFrame |
12 | Char [ "Right Arm" ] :Destroy() |
13 | right = Instance.new( "Part" ,Char) |
14 | right.Size = Vector 3. new( 1 , 2 , 1 ) |