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

So i am making this fire ball blast, and i want it to avoid hitting the shooter, how do i fix 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:FindFirstChildOfClass("Vector3Value")
12local Check = true
13local BodyVelocity = Blast:FindFirstChild("BodyVelocity")
14Blast.Touched:Connect(function(hit)
15    if Check == true then
View all 61 lines...

Answer this question