Let me show you what I mean.
Here’s a clip from The Strongest Battlegrounds, they managed to weld the dummy (works with others players too) to the character.
How thought?
When I try to weld a dummy to me, it slows my character down because of the mass.
Do you have any idea of how this was done?
you can use a motor6D which is simple, but there is a bug where a humanoid dies the welded humanoid instantly dies aswell. If you dont want this behaviour you can use something more tricky
oops forgot to give the solution:
local char1 = --main character
local char2 = --other character
local motor = Instance.new("Motor6D", char1.HumanoidRootPart)
motor.Part0 = char1.HumanoidRootPart
motor.Part1 = char2.HumanoidRootPart
use motor to animate
enable massless property for every part for the 2 characters
1 Like