I tried doing:
1 | local part = Instance.new( "Part" ) |
2 | part.Shape = "Sphere" |
It did not work how I make a part transform to a sphere??
The shape property isn’t Sphere it is Ball yeah it is that blank it’s just Ball
And you can make one with code like in the following;
Code:
1 | local part = Instance.new( "Part" ) |
2 | part.Parent = workspace |
3 | part.Shape = Enum.PartType.Ball |
4 | part.Size = Vector 3. new( 4 , 4 , 4 ) |
Hope this helped.
1 | local part = Instance.new( "Part" ) |
2 | part.Parent = game.Workspace |
3 | part.Shape = Enum.Ball |