I have a script where I’m using :BreakJoints(), but I don’t know if I should still use it.
I’m quite new to scripting, so I am not completely sure if I should still use it considering it’s deprecated. I also don’t know any other methods I could use in the first place.
local descendants = workspace:GetDescendants()
for _, descendant in pairs(descendants) do
if descendant:IsA("BasePart", "MeshPart") then
descendant:BreakJoints()
descendant.Anchored = false
end
end