My "3 hit sword combo" activates twice and doesn't function properly?
So basically what the script does: Whenever I press "F" my character plays a animation and adds "1" to basic swingcombo. Basicswingcombo determines what animation and skill I am using. Function swingcombo() is basically the time the player has to use all three attacks before it resets back to the first one. In general - it's a combo move that the player has to use all three of the 'attacks' before the timer resets the skill.
During testing, it repeated the action twice, and did all three actions all at once instead of one action and then waiting on wait(0.6) delay to attack again.
01 | player = game.Players.LocalPlayer |
02 | character = player.Character |
03 | mouse = player:GetMouse() |
04 | storage = game.ReplicatedStorage |
08 | local swordani = Instance.new( "Animation" ) |
10 | local swordani 2 = Instance.new( "Animation" ) |
12 | local swordani 3 = Instance.new( "Animation" ) |
26 | function onKeyPress(inputObject, gameProcessedEvent) |
27 | if character.Humanoid.Health > 0 and character:FindFirstChild( "StunEffect" ) = = nil and basic = = false then |
28 | if basicswingcombo = = 0 then |
31 | basicswingcombo = basicswingcombo + 1 |
32 | local animTrack = character.Humanoid:LoadAnimation(swordani) |
35 | elseif basicswingcombo = = 1 then |
37 | basicswingcombo = basicswingcombo + 1 |
38 | local animTrack 2 = character.Humanoid:LoadAnimation(swordani 2 ) |
41 | elseif basicswingcombo = = 2 then |
43 | basicswingcombo = basicswingcombo + 1 |
44 | local animTrack 3 = character.Humanoid:LoadAnimation(swordani 3 ) |
56 | game:GetService( "UserInputService" ).InputBegan:connect(onKeyPress) |
58 | mouse.Button 1 Down:connect(click) |