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 7 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
7 years ago
Edited 7 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 4 years ago
01projectile.MainPart.Touched:connect(function(part)
02    if part.Parent:FindFirstChild("Humanoid") then
03        print("Target has a humanoid!")
04        if not part.Parent = hum.Parent then
05            print("Not my character!")
06            if checkHit(part.Parent, hit) then
07                print(4)
08                local EnemyCharacter = part.Parent
09                if damage then
10                    print(5)
11                    eventDamage(nil,char2,damage)
12                end
13            end
14        end
15    end

tell me where it reaches and what happens

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

Answer this question