How to attach something to your character?

Hello,

So I basically want to have it so that I can attach a pet to my character. I am not sure how to do this.

I have tried to do something like welding but there is nothing really for me to weld it to and there is no where really to weld it to.

I have also just tried to add it to the character model but it did not keep on me.

(as an example of what I want)

image

Try this

local char = (put char path)
local pet = (put pet path)
local v = Instance.new("ManualWeld", pet)
v.Part0 = char.HumanoidRootPart
v.Part1 = pet.Torso

If the pet appear in ur Torso, you need to do a animation to appear in back of ur character or duplicate a HumanoidRootPart of Dummy and weld it in ur pet.

Is there any other way cuz I just feel like that would be more of a pain then it has to be ngl.

nvm it may work better thinking about it.

WeldConstraints are better in this scenario. Position the pet behind the player then simply create the weld. The pet should stay in the set position and not teleport into the player’s torso.

1 Like