i’m creating a weld using Instance.new(“Weld”, weld parent), but when i try to delete the weld, it deletes the Part1 object, this is my code
local w = Instance.new("Weld", v.RightHand)
w.Part0 = v.RightHand
w.Part1 = workspace.JumpscareCam
w.C0 = CFrame.Angles(0, math.rad(-180), 0)
w.C1 = CFrame.Angles(math.rad(-90), 0, 0) * CFrame.new(-.5, 1, -1)
--my code
w:Destroy()
workspace.JumpscareCam.CFrame = workspace.JumpscareCamCFrame.CFrame
jumpscarecam is the object i’m using to change the camera when the jumpscare event is fired, i’m not gonna enter in much details about this, but when i destroy the weld it also destroys the jumpscarecam