How to make part follow attachment

note: i am currently afk by writing this
how do you make the part/gunpart follow the attachment?

here’s the code and a video

local function spawnguns()
	for i = 1, 10 do
		local sound = realattachment.select
		sound:Play()
		local gun = guns[i % #guns + 1]
		local clone = gun:Clone()
		clone.Parent = realattachment
		clone.CFrame = realattachment.WorldCFrame
		wait(0.2)
		clone:Destroy()
	end
end
External Media

i dont understand what you are trying to accomplish, I see that the gun follows the attachment in the video already. please elaborate

i want the gun to follow the attachment and not stay still