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

How do you weld a brick to a player in r15?

Asked by 5 years ago

If I want a brick welded to a player at their legs, how would I do that?

I've tried but no success.

2 answers

Log in to vote
0
Answered by
AIphanium 124
5 years ago

I'm just here to help you! but since you gave no scripts, i have nothing to do with typing scripts, i'm sorry, and i'm busy ;(

R15's body parts are different, like, Left Leg is not valid, you should use LeftLowerLeg -- sorry if its wrong, i'm not in studio right now, you can find R15's body types by using the animation plugin's Dummy Creator.

I believe this is your problem, for more help from welding, Click This!

Ad
Log in to vote
-1
Answered by
Elixcore 1337 Moderation Voter
5 years ago
plr = game.Players.LocalPlayer
local part = Instance.new("Part", plr.Character.RightLowerLeg)
part.Position = part.Parent.Position
part.Name = "Brick"
local weld = Instance.new("Weld", part)
weld.Part0 = part
weld.Part1 = part.Parent
0
The parent parameter for Instance.new is deprecated User#19524 175 — 5y
0
good to know. Elixcore 1337 — 5y
0
all I did was answer and you decide to downvote me, this is the second time you do it and you should seriously stop it Elixcore 1337 — 5y

Answer this question