Connect surfaces of parts without welding

can you connect surfaces of parts together without welding? I’ve tried using glue and studs and inlets but doesn’t seem to be working.

1 Like

Surface joining has been deprecated for years now, you’ll have to do with welding.

1 Like

well I’ve been trying to break welds in a model when they come into contact with terrain but it’s not working.
here is what i have got. reddy is the model.

script.Parent.Touched:Connect(function(red)
local terrain = workspace.Terrain
if workspace.Terrain then
workspace.city.reddy.red:FindFirstChild(‘Weld’):Destroy()

end

end)

1 Like

Both BaseParts and Models have a method called BreakJoints that will break any rigid joints like welds. So if you have some variable that references a part, you can break all joints on it like this:

part:BreakJoints()

or if you call it in a Model it will break all joints on parts inside the Model.