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

Why does the tool not activate?

Asked by 4 years ago
01local config = script.Parent:WaitForChild("Configuration")
02local Damage = config.Damage.Value
03local UltimateDamage = config.UltimateDamage.Value
04local UltimateCoolDown = config.UltimateCoolDown.Value
05local CanDoUltimate = false
06 
07local function WaitForUltimate()
08    wait(UltimateCoolDown)
09    CanDoUltimate = true
10    print("Lol")
11end
12 
13local function NormalAttack()
14    print("Normal")
15end
View all 27 lines...

the action service thingy works but not the activation.

Answer this question