RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a round part"
To create a round part in Roblox, you can use a CylinderMesh. Here's a script to create a round part: ```lua local roundPart = Instance.new("Part") roundPart.Parent = game.Workspace roundPart.Size = Vector3.new(5, 5, 5) roundPart.Position = Vector3.new(0, 10, 0) roundPart.BrickColor = BrickColor.new("Bright red") local cylinderMesh = Instance.new("CylinderMesh") cylinderMesh.Parent = roundPart ```