Sword Does Damage Without Being Clicked?
The sword does damage without being clicked? It does damage when it's touched not when it's clicked, I can't seem to find a way to fix this.
The Damage Script For My Weapon
05 | function tagHumanoid(humanoid,killer) |
07 | if humanoid and killer then |
09 | local tag = Instance.new( "ObjectValue" ) |
17 | script.Parent.Handle.blade.Touched:connect( function (p) |
19 | local plr = game.Players:GetPlayerFromCharacter(tool.Parent) |
21 | if script.Parent.CanDamage.Value = = true and p.Parent:FindFirstChild( "Humanoid" ) then |
22 | script.Parent.CanDamage.Value = false |
23 | local humanoid = p.Parent:FindFirstChild( "Humanoid" ) |
25 | humanoid:TakeDamage(Av) |
27 | tagHumanoid(humanoid, plr) |
31 | script.Parent.CanDamage.Value = true |
33 | if p.Parent.Humanoid.Health < 1 then |
34 | print ( "Player Has Died" ) |