Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I teleport two parts of a tool without severing them from eachother?

Asked by 6 years ago

I'm trying to make it so that when you combine two items, another item is moved out from the server storage into the Workspace, then teleported to that same location. I got everything down, I got the two parts of the tool to teleport next to eachother, but how do I get them to stay that way?

1 answer

Log in to vote
0
Answered by
PlaasBoer 275 Moderation Voter
6 years ago

Have a look at Weld Constraints.

You can add it with Intance.new or in studio.

local weld = Instance.new("WeldConstraint")
weld.Parent = partA
weld.Part0 = partA
weld.Part1 = partB

Read more https://wiki.roblox.com/index.php?title=API:Class/WeldConstraint

0
Welding worked. Thanks! DaBrainlessOne 129 — 6y
0
Hey can you upvote this answer. PlaasBoer 275 — 6y
0
And if you have more questions feel free to ask me. PlaasBoer 275 — 6y
0
I can't upvote the answer; I don't have more than 25 reputation. But thanks for the help! DaBrainlessOne 129 — 6y
Ad

Answer this question