So i am making this fire ball blast, and i want it to avoid hitting the shooter, how do i fix 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:FindFirstChildOfClass( "Vector3Value" ) |
13 | local BodyVelocity = Blast:FindFirstChild( "BodyVelocity" ) |
14 | Blast.Touched:Connect( function (hit) |
17 | local Humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
18 | if hit.Parent.Name ~ = BoolCheck.Name then |
19 | if Humanoid then print ( "Hit" ) |
20 | if hit.Parent.Name = = BoolCheck.Name then |
21 | print ( "Hit Part is not the shooter" ) |
22 | BodyVelocity.Velocity = Vector 3. new( 0 , 0 , 0 ) |
23 | Explosion 1. Enabled = true |
24 | Explosion 2. Enabled = true |
25 | Explosion 3. Enabled = true |
26 | Explosion 4. Enabled = true |
31 | Humanoid.Health = Humanoid.Health - Damage |
33 | Explosion 1. Enabled = false |
34 | Explosion 2. Enabled = false |
35 | Explosion 3. Enabled = false |
36 | Explosion 4. Enabled = false |
40 | if Humanoid = = nil then |
41 | BodyVelocity.Velocity = Vector 3. new( 0 , 0 , 0 ) |
42 | Explosion 1. Enabled = true |
43 | Explosion 2. Enabled = true |
44 | Explosion 3. Enabled = true |
45 | Explosion 4. Enabled = true |
51 | Explosion 1. Enabled = false |
52 | Explosion 2. Enabled = false |
53 | Explosion 3. Enabled = false |
54 | Explosion 4. Enabled = false |