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

How should i substitute handles in tools?

Asked by 6 years ago

I'm trying weld, but i'm not doing very well. How should i weld a part of the tool to the hand? (without naming it handle)

2 answers

Log in to vote
0
Answered by
nap516 87
6 years ago
Edited 6 years ago
  1. Below constraints there should be a drop down thing that says "join".

  2. You want to click that and then it should drop down and then click "Always".

  3. Then connect the parts.

Ad
Log in to vote
0
Answered by 3 years ago
projectile.MainPart.Touched:connect(function(part)
    if part.Parent:FindFirstChild("Humanoid") then
        print("Target has a humanoid!")
        if not part.Parent = hum.Parent then
            print("Not my character!")
            if checkHit(part.Parent, hit) then
                print(4)
                local EnemyCharacter = part.Parent
                if damage then
                    print(5)
                    eventDamage(nil,char2,damage)
                end
            end
        end
    end

tell me where it reaches and what happens

0
It works! Man thank you :-)) Wish u a good day Kiriyato 15 — 3y

Answer this question