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

My "3 hit sword combo" activates twice and doesn't function properly?

Asked by
3dsonicdx 163
9 years ago

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.

01player = game.Players.LocalPlayer
02character = player.Character
03mouse = player:GetMouse()
04storage = game.ReplicatedStorage
05basic = false
06skill = false
07basicswingcombo = 0
08local swordani = Instance.new("Animation")
09swordani.AnimationId = "http://www.roblox.com/Asset?ID="
10local swordani2 = Instance.new("Animation")
11swordani2.AnimationId = "http://www.roblox.com/Asset?ID="
12local swordani3 = Instance.new("Animation")
13swordani3.AnimationId = "http://www.roblox.com/Asset?ID="
14 
15 
View all 58 lines...
0
It looks like your swingcombo() is being fired any time you give any type of input - Focusing the game, tilting a device, clicking, moving, etc. User#6546 35 — 9y
0
Ok I'm a idiot. I accidently removed the key choice. Thanks for helping. 3dsonicdx 163 — 9y

Answer this question