Is a part with a size of (0, 0, 0) possible to create?

I want to create a smooth transition of part appearing from kind of nowhere. I Imagine it as a literally non-existent part with a size of 0, 0, 0 slowly grow using a tween service. I was wondering if it is possible to create any way a part with a size of 0 ,0, 0. If it is not possible, may be you know a way I can achieve a similar result? So far tried to set part size to 0, 0, 0 manually, but that of course does not work. Have not tried script yet.

1 Like

a part’s minimum size is 0.001, i do not know why you would need smaller but you could use specialMeshes to make a part “truly” 0, 0, 0

1 Like

make the part 0.001 on all sides and turn it transparent, since it is so small at that point in whatever script you are using you can turn the transparency back to 0 and tween it from there.

2 Likes

using BlockMesh, you can set it’s Scale property to 0, 0, 0 and tween it to 1, 1, 1.

1 Like

I guess, the 0.001 size is actually fairly small for my purpose. Surely no one would notice it spawn.

2 Likes

I will also try other ways too, since they all are quite different and feel quite interesting

1 Like

You cannot create a part with the size (0, 0, 0) in Roblox Studio. This is due to the fact that Roblox includes a minimum part size so that parts can always be valid objects within the rendering system and physics engine…When you try to set the Size property of a part to (0, 0, 0) through a script or by hand, Roblox will either error or modify the size to a minimum value

bro 0.001 is literally less than a pizel nobody is going to notice

1 Like

I tried other methods, but I really underestimated how small a part with minimum size is. A simple part with smallest possible size was enough for my purpose, and I would say it was the best out of 3 ways that were suggested.