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

Why does this weld script not working?

Asked by 9 years ago
plr = game.Workspace.LocalPlayer
weld = Rotation.Vector3.new

local foundarm = plr:FindFirstChild("Left Arm")
if foundarm then
    foundarm.Name = "LeftArm"
    local arm = plr:FindFirstChild("Right Arm")
    if arm then
        arm.Name = "RightArm"
    end
end

plr.Handle.RightArm.weld(0, 15, 0)
plr.Handle.LeftArm.weld(0, -15, 0)

It won't work. It's for my gun. I don't see ANY errors.

1 answer

Log in to vote
0
Answered by 9 years ago
  1. There is no weld nor can you do weld(0,0,0) And you did plr.Handle.RightArm you can not. Because it is trying to find a handle inside the player.
Ad

Answer this question