Am I inserting parts into a table incorrectly?

This is a localscript. I don’t know if localscripts work or anything BUT I have tried to do it but it doesn’t work.

game:GetService("RunService").RenderStepped:Connect(function()
	local w = game.Workspace.Towers:GetChildren()
	for i = 1, #w do 
		c = w[i]:GetChildren()
		for i=1, #c do
			if (c[i].Name == "Range") then 
				table.insert(c[i], ignore)
				table.insert(c[i], ignore2)
			end
		end 
	end
end)

Nevermind I did it.

Was simple enough