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

How to weld a model to player's torso? [closed]

Asked by
Sindrotex -41
7 years ago
Edited 7 years ago

well uh read the title...

0
i tried many things but nothing worked Sindrotex -41 — 7y
0
Your question is a bit confusing. A backpack in itself is not a tool but contain tools. A backpack store tools. So is it that you want a custom backpack or tools that doesnt use the "orange hammer" item that is default by roblox Hakurem 30 — 7y
0
i just wanna weld something to player's torso when they join the game Sindrotex -41 — 7y
0
and i dont know how :| Sindrotex -41 — 7y

Closed as Not Constructive by RubenKan

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

3 answers

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago
01game.Players.PlayerAdded:Connect(function(Player)
02Player.CharacterAdded:Connect(function(Char)
03local Part = Char:WaitForChild("HumanoidRootPart")
04local Weld = Instance.new("Weld", Char)
05WhatYouWantToWeld.CFrame = Part.CFrame
06Weld.Part0 = Part
07Weld.Part1 = WhatYouWantToWeld
08Weld.C0 = Part.CFrame:inverse()
09Weld.C1 = WhatYouWantToWeld.CFrame:inverse()
10end)
11end)
0
the thing i want to weld gotta be somewhere specific or i can just get it from workspace? Sindrotex -41 — 7y
0
also does it work with unions and models? because this is what i try to weld Sindrotex -41 — 7y
Ad
Log in to vote
0
Answered by 7 years ago

you can try this model of mine, which was months ago, i hope you get what the scripts say: https://www.roblox.com/library/868174364/R6-ONLY-Welding-Basics-by-anphu04

Log in to vote
0
Answered by
Hakurem 30
7 years ago

As shown in the wiki http://wiki.roblox.com/index.php?title=Weld. Note that im using a serverscript.

01---- Weld Function taken from wiki (note only 2 parts can weld with this function)----
02 
03local function weldBetween(a, b)
04    --Make a new Weld and Parent it to a.
05    local weld = Instance.new("ManualWeld", a)
06    --Get the CFrame of b relative to a.
07    weld.C0 = a.CFrame:inverse() * b.CFrame
08    --Set the Part0 and Part1 properties respectively
09    weld.Part0 = a
10    weld.Part1 = b
11    --Return the reference to the weld so that you can change it later.
12    return weld
13end
14 
15 
View all 26 lines...