How do I fix this script from not working when dieing or resetting?
So I have this sprint script but it doesn't work if I die or reset and I can't find out the problem
01 | local UIS = game:GetService( "UserInputService" ) |
02 | local p = game:GetService( "Players" ).LocalPlayer |
03 | local c = p.Character or p.CharacterAdded:Wait() |
04 | local anim = Instance.new( "Animation" ) |
06 | local RunAnimation = c:WaitForChild( "Humanoid" ):LoadAnimation(anim) |
07 | UIS.InputBegan:Connect( function (i,a) |
09 | if i.KeyCode = = Enum.KeyCode.LeftShift then |
10 | c:WaitForChild( "Humanoid" ).WalkSpeed = 20 |
16 | UIS.InputEnded:Connect( function (i,a) |
18 | if i.KeyCode = = Enum.KeyCode.LeftShift then |
19 | c:WaitForChild( "Humanoid" ).WalkSpeed = 13 |