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

I am trying to make the fireball not damage the player that shot it?

Asked by 4 years ago

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 -

01local Blast = script.Parent
02local Explosion1 = Blast.Explosion1
03local Explosion2 = Blast.Explosion2
04local Explosion3 = Blast.Explosion3
05local Explosion4 = Blast.Explosion4
06local Bits = Blast.Bits
07local Fire1 = Blast.Fire1
08local Fire2 = Blast.Fire2
09local Fire3 = Blast.Fire3
10local Damage = script.Parent.Damage.Value
11local BoolCheck = Blast:FindFirstChild("BoolCheck")
12local Check = true
13local BodyVelocity = Blast:FindFirstChild("BodyVelocity")
14Blast.Touched:Connect(function(hit)
15    if Check == true then
View all 44 lines...
0
Use an if then statement to make sure the Humanoid does not belong to the person who is firing the weapon. If it belongs to someone else, then do damage. EzraNehemiah_TF2 3552 — 4y
0
i think i did that XxGhostBoy_HDxX 38 — 4y
0
and i think that will still stop the blast, so it wont damage the shooter, but it will explode in his face XxGhostBoy_HDxX 38 — 4y
0
You only checked if the humanoid exists on line 18. You didn't check who the humanoid belongs to anywhere in this script. EzraNehemiah_TF2 3552 — 4y
0
ohh XxGhostBoy_HDxX 38 — 4y

Answer this question