Hello ! I am wondering how could i insert a sphere by Instance.new
I have tried
local part = Instance.new("Sphere") -- ;-; wouldn't work obviously part.Parent = game.Workspace
Second bad script :
local part = Instance.new("Part") part.Type = "Sphere" -- ;-; wouldn't work obviously part.Parent = game.Workspace
Thx for reading my bad english
This is how you change its shape.
local part = Instance.new("Part", game.Workspace) part.Shape = "Ball"
You have to set the .Shape
property to a PartType Enum like so:
local part = Instance.new("Part") part.Shape = Enum.PartType.Sphere part.Parent = game.Workspace