I tried doing:
local part = Instance.new("Part") 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:
local part = Instance.new("Part")
part.Parent = workspace
part.Shape = Enum.PartType.Ball
part.Size = Vector3.new(4, 4, 4)
Hope this helped.
local part = Instance.new("Part") part.Parent = game.Workspace part.Shape = Enum.Ball