-
What do you want to achieve? Keep it simple and clear!
I’d like to weld a part to a certain part of a players torso. -
What is the issue? Include screenshots / videos if possible!
So, I made it so it actually welds it, however, the part is stuck inside the players torso, inside of being on their back. The part is a backpack. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried offcentering the weld a bit by myself, but it always ended up either not welding, or the part being welded to the player, but the part was on the other side of the baseplate. Yes, I’ve looked around the internet, but couldn’t find anything.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
This is my code so far:
local hrp = script.Parent.Parent:WaitForChild("Torso")
local main = script.Parent
local weld = Instance.new('Weld', main)
weld.Part0 = main
weld.Part1 = hrp
Any help would be greatly appreciated!