How to make a drag system

Hi, how would i go about making a sytem for when i click on a ragdolled player i am able to drag then like in the clip here

Im guessing it’s just animation, and the other player RootPart is welded to your arm (the other body parts are in ragdoll state, u can get that with some modules)

1 Like

for setnetworkowner, you only need to set the network owner of one part of the assembly. Roblox will automatically set the network owners of the rest of the assembly, so that for loop may not be needed. Also, to pairs() is deprecated; assuming myTable is of type “table”,
for _,_ in myTable do end
will perform the same thing as
for _,_ in pairs(myTable) do end

will not perform the same, generalized iterator is faster than pairs

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.