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" |