local a4 = Instance.new("Animation", game.Workspace)
a4.AnimationId = "rbxassetid://5857108705"
local reload = plr.Character.Humanoid:LoadAnimation(a4)
if input.KeyCode == Enum.KeyCode.R then
if debounce == false and shots ~= 0 then
currentTime = tick()
debounce = true
special = true
shoot:Stop()
idle:Stop()
pick:Stop()
reload:Play()
reload.Stopped:Connect(function()
reload = false
special = false
idle:Play()
end)
end
end