A lot of welds being created - weld virus?

Sometime I used freemodels. Now I’m not using them but I still have a problem - when I’m creating a new place and making a part, welds are always being created. Is this made by Roblox?

(Sorry for my English)
image

1 Like

I think no. It’s usual welds between two colliding parts.
At least it 100% can’t break your game, so no need worry.

1 Like

If your welds come from the model originally, they were originally as it is. Unless you started to notice welds adding up(despite disabled surface-to-surface welding).

Look for a script of some sort.

for _ , descendant in ipairs(workspace:GetDescendants()) do
	if descendant:IsA("Weld") then
		local Weld = descendant
		Weld:Destroy()
	elseif descendant:IsA("BasePart") then
		local BasePart = descendant
		BasePart.Anchored = true
	end
end

run this in the commandbar to remove all welds and anchor all BaseParts

4 Likes

It’s not a virus. I have the same problem. It automatically welds parts in Roblox Studio for me.

If it is a virus, try checking your plugins.

@ko_ch4 Yes that’s right. It happens to me too.

If you don’t want these then turn join surfaces off and type the script that @RuizuKun_Dev wrote in the command bar.