Before you read, know that there might be grammar or spelling issues that you might not be able to decipher.
You might not understand some of the things I'm trying to explain to you.
There ALSOOOO might be coding errors.
I can't comment on your post for some reason so, if you're having one of the above problems, friend me on ROBLOX.
Or, if you can message me, message me. lol
Hi there. I played around with your animation, and I figured out your problem.
I also found other issues that you probably want to fix.
You need to create the WHOLE BLAST before you add the explosion function.
If that didn't make sense, you have to add your particles, sound and velocity before you make your function that explodes your projectile.
This is because your function checks if your projectile is being touched before it even moved.
Also, there are two problems with your script.
In your explosion function, it only checks if the hitpart's parent's name does not equal the user's name.
However, if the projectile touched the user's hat, it would have exploded the user. This is because the hat's parent wouldn't equal the user's name.
The other problem is that you assigned your explosion's position to the blast.
You should have assigned the explosion's position to the blast's POSITION.
To fix your explosion function, replace it with this new one:
01 | p.Touched:connect( function (hitpart) |
04 | if hitpart.Parent.Name ~ = player.Name and hitpart.Parent.Parent.Name ~ = player.Name then |
06 | local Explosion = Instance.new( "Explosion" ) |
07 | Explosion.BlastPressure = 100 |
08 | Explosion.BlastRadius = 3 |
09 | Explosion.Position = p.Position |
10 | Explosion.Parent = game.Workspace |
ALSO, you have two variables that are assigned to the player. You only need one.
And, I notice you're not good with debounces. lol
What you want to do is make a variable and check if it is true or false.
Here's the debounce method I use:
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
08 | mouse.KeyDown:connect( function (key) |
09 | if not enabled then return end |
So, in the start of the function, the code checks if the debounce variable is false.
If it is false, then it doesn't run the code.
Now, we make the debounce variable false so the code can't run too many times at once.
You might be asking, "why doesn't the code disable?".
It doesn't disable because our code didn't check if it was disabled.
We only checked the variable at the start of the function.
This is also why the code doesn't run more than one time at once.
To fix your WHOLE script, replace it with this organized new one:
001 | local ws = game:GetService( "Workspace" ) |
004 | local Tool = script.parent |
006 | local player = game.Players.LocalPlayer |
007 | local Mouse = player:GetMouse() |
008 | local handle = player.Character.Torso |
010 | local Anim = script:WaitForChild( "Animation" ) |
015 | Tool.Equipped:connect( function (mouse) |
019 | Mouse.KeyDown:connect( function (key) |
020 | if not enabled then return end |
028 | local s = player.Character.Humanoid:LoadAnimation(Anim) |
033 | local p = Instance.new( "Part" ) |
034 | p.CFrame = CFrame.new(handle.Position) |
035 | p.TopSurface = "Smooth" |
036 | p.BottomSurface = "Smooth" |
037 | p.Shape = Enum.PartType.Ball |
038 | p.Size = Vector 3. new( 2 , 2 , 2 ) |
039 | p.Transparency = ( 0.5 ) |
042 | p.BrickColor = BrickColor.new( "Neon green" ) |
047 | local ParticleEffect = Instance.new( "ParticleEmitter" ) |
048 | ParticleEffect.Size = NumberSequence.new( 2 ) |
049 | ParticleEffect.Transparency = NumberSequence.new( 0.5 ) |
050 | ParticleEffect.LightEmission = 0.3 |
051 | ParticleEffect.Rate = 2860 |
052 | ParticleEffect.Parent = p |
053 | ParticleEffect.Acceleration = Vector 3. new( 0 , 0 , 0 ) |
054 | ParticleEffect.Lifetime = NumberRange.new( 0.2 ) |
055 | ParticleEffect.Speed = NumberRange.new( 1 ) |
056 | ParticleEffect.Rotation = NumberRange.new(- 360 , 360 ) |
057 | ParticleEffect.RotSpeed = NumberRange.new(- 360 , 360 ) |
062 | local woosh = Instance.new( "Sound" ) |
065 | woosh.MaxDistance = 250000 |
066 | woosh.EmitterSize = 1 |
072 | local bv = Instance.new( "BodyVelocity" ) |
074 | bv.velocity = (Mouse.Hit.p - handle.Position).unit* 100 |
075 | game:GetService( "Debris" ):AddItem(p, 7 ) |
079 | p.Touched:connect( function (hitpart) |
082 | if hitpart.Parent.Name ~ = player.Name and hitpart.Parent.Parent.Name ~ = player.Name then |
083 | local Explosion = Instance.new( "Explosion" ) |
084 | Explosion.BlastPressure = 100 |
085 | Explosion.BlastRadius = 3 |
086 | Explosion.Position = p.Position |
087 | Explosion.Parent = game.Workspace |
102 | Tool.Unequipped:connect( function () |