lua how to delete a part for roblox

-- Step 1: Define the instance you want to delete a part from
local partToDelete = workspace.PartToDelete -- Replace 'PartToDelete' with the actual name of your part

-- Step 2: Check if the part exists
if partToDelete then
    -- Step 3: Delete the part
    partToDelete:Destroy()
else
    -- Step 4: Handle the case where the part doesn't exist
    warn("PartToDelete does not exist.")
end