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

How do I fix this script from not working when dieing or resetting?

Asked by
FBS_8 25
5 years ago

So I have this sprint script but it doesn't work if I die or reset and I can't find out the problem

01local UIS = game:GetService("UserInputService")
02local p = game:GetService("Players").LocalPlayer
03local = p.Character or p.CharacterAdded:Wait()
04local anim = Instance.new("Animation")
05anim.AnimationId = "rbxassetid://4588222471"
06local RunAnimation = c:WaitForChild("Humanoid"):LoadAnimation(anim)
07UIS.InputBegan:Connect(function(i,a)
08    if not a then
09        if i.KeyCode == Enum.KeyCode.LeftShift then
10            c:WaitForChild("Humanoid").WalkSpeed = 20
11            RunAnimation:Play()
12        end
13    end
14end)
15 
View all 23 lines...
0
roblox is dumb. a quick fix might be a wait(1) at the start of the script big_thonk 0 — 5y

1 answer

Log in to vote
0
Answered by
compUcomp 417 Moderation Voter
5 years ago

Redefine the character and AnimationTrack when the character is loaded.

1p.CharacterAdded:Connect(function(char)
2    c = char
3    RunAnimation = c:WaitForChild("Humanoid"):LoadAnimation(anim)
4end)
0
After the player dies, "c" points to an object that no longer exists and "RunAnimation" is an animation loaded on a humanoid that is also nonexistent. compUcomp 417 — 5y
0
How would I implement this? FBS_8 25 — 5y
0
You would put the code I posted somewhere in your script. compUcomp 417 — 5y
0
I already figured it out thx FBS_8 25 — 5y
Ad

Answer this question