How can i make breakjoints ignore one specific one?

Just make custom function for them:

local function BreakJoints(Prt:Instance):()
for i,v in Prt:GetDescedants() do
if not v:IsA("Motor6D") or v:GetAttribute("Ignore")==true then continue end
v:Destroy()
end
end