Attempting to clone children resulting in error

Hi all.
I am attempting to make a script that clones the scripts of a plane to a folder.
however i am having problems.
here is my script:

local folder = script.Parent.Parent.Ship.VehicleSeat:GetChildren()
for _,v in pairs(folder) do
local bob = v:Clone()
bob.Parent = script.Parent.Parent.Folder
end
When the script is executed, the seat disappears and an error message shows up:

16:13:51.365 - Workspace.test carrier.CarrierPad.Deploy.Script:9: attempt to index nil with ‘Parent’

Make sure the archivable property in the things inside the folder is true.

Please try this:

local folder = script.Parent.Ship.VehicleSeat
for index, value in pairs(folder:GetChildren()) do
    local indexiveClone = v:Clone()
    indexiveClone.Parent = script.Parent.Folder
end

Does it work? If it doesn’t work, I would recommend leaving the .rblx file if you are comfortable with it. If that doesn’t work, please give us screenshots of the workspace all uncollapsed.