I am trying to make the fireball not damage the player that shot it?
So once you fire the attack and it hits the player that shot the attack, it breaks the damage script and doesn't work anymore, but if the fire attack doesn't hit the player that shot it, the script works perfectly, how do i fix it?
Script -
01 | local Blast = script.Parent |
02 | local Explosion 1 = Blast.Explosion 1 |
03 | local Explosion 2 = Blast.Explosion 2 |
04 | local Explosion 3 = Blast.Explosion 3 |
05 | local Explosion 4 = Blast.Explosion 4 |
06 | local Bits = Blast.Bits |
07 | local Fire 1 = Blast.Fire 1 |
08 | local Fire 2 = Blast.Fire 2 |
09 | local Fire 3 = Blast.Fire 3 |
10 | local Damage = script.Parent.Damage.Value |
11 | local BoolCheck = Blast:FindFirstChild( "BoolCheck" ) |
13 | local BodyVelocity = Blast:FindFirstChild( "BodyVelocity" ) |
14 | Blast.Touched:Connect( function (hit) |
17 | local Humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
18 | if Humanoid then print ( "Hit" ) |
19 | if BoolCheck.Value ~ = hit.Parent.Name then |
20 | if BoolCheck.Value = = hit.Parent.Name then |
21 | BodyVelocity.Velocity = Vector 3. new( 0 , 0 , 0 ) |
23 | print ( "Hit Part is not the shooter" ) |
24 | Explosion 1. Enabled = true |
25 | Explosion 2. Enabled = true |
26 | Explosion 3. Enabled = true |
27 | Explosion 4. Enabled = true |
32 | Humanoid.Health = Humanoid.Health - Damage |
34 | Explosion 1. Enabled = false |
35 | Explosion 2. Enabled = false |
36 | Explosion 3. Enabled = false |
37 | Explosion 4. Enabled = false |