basically to make the mechanics of a shotgun I need to use animation events and all that to make the sound line up with the animation. but I wonder if I do:
AnimationTrack:Play()
Sound:Play()
or
AnimationTrack:Play()
AnimationTrack:GetMarkerReachedSignal("FootStep"):Connect(function()
sound1:Play()
end)
AnimationTrack:GetMarkerReachedSignal("FootStep2"):Connect(function()
sound2:Play()
end)
How much difference does it make in performance. A lot or a little?