of     1   

hovertank7
#140615931Thursday, July 17, 2014 9:30 AM GMT

this script creates a part with a cylinder mesh inside and the part is supposed to be (0.4, 3.6, 0.4) in size but it spawns with the size (1, 3.6, 1) please help: I = Instance.new("Part") I.Parent = Workspace I.BrickColor = BrickColor.new("Brown") I.Material = "Wood" M = Instance.new("CylinderMesh") M.Parent = I I.Size = Vector3.new(0.4, 3.6, 0.4) I.Name = "Stick"
LeitrisArcade
#140616132Thursday, July 17, 2014 9:36 AM GMT

I = Instance.new("Part") I.Parent = Workspace I.BrickColor = BrickColor.new("Brown") I.Material = "Wood" M = Instance.new("CylinderMesh") M.Parent = I I.FormFactor = "Custom" -- Needs to be custom to have decimal increments I.Size = Vector3.new(0.4, 3.6, 0.4) I.Name = "Stick"
hovertank7
#140616179Thursday, July 17, 2014 9:37 AM GMT

works, thankyou :)
AntonioLorenzi
#140617013Thursday, July 17, 2014 10:05 AM GMT

why don't you insert the easier way Instance.new("Part", game.Workspace)

    of     1