Clonning part that playing animation

i want to clone a currently playing animation part but failed dosnt do anything please help me

local part = script.Parent.Part
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://8249417448"
local Animation = script.Parent.AnimationController:LoadAnimation(animation)

part.Touched:Connect(function()
	local C = script.Parent:Clone()
	C.CanCollide = true
	C.Parent = workspace
	C.CFrame = part.CFrame
end)

Animation:Play()
wait(10)
Animation:Stop()