Hello! So I have a few “GetMarkerReachedSignal” events but it seems that none of them reach since nothing is being printed out. Each of the markers are labeled correctly but it still doesn’t reach somehow? If you have any idea why this is happening please reply, thanks!
tool.Activated:Connect(function()
local Attack1 = Humanoid:LoadAnimation(Attack1Anim)
Attack1:Play()
Attack1:GetMarkerReachedSignal("slash"):Connect(function()
print("slash")
tool.BodyAttach.slash:Play()
end)
Attack1:GetMarkerReachedSignal("sheathe"):Connect(function()
print("sheathe")
tool.BodyAttach.sheathe:Play()
canHit = false
end)
Attack1:GetMarkerReachedSignal("startSlash"):Connect(function()
print("startSlash")
canHit = true
end)
end)