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)
Below constraints there should be a drop down thing that says "join".
You want to click that and then it should drop down and then click "Always".
Then connect the parts.
01 | projectile.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 ,char 2 ,damage) |
12 | end |
13 | end |
14 | end |
15 | end |
tell me where it reaches and what happens