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

animation script breaks apon death?

Asked by 3 years ago

this script just stops working once you die. no clue why tho

01local player = game.Players.LocalPlayer
02local character = player.Character
03repeat wait()
04    character = player.Character
05until character
06local hum = character:WaitForChild("Humanoid")
07local emote = hum:LoadAnimation(script.Parent.Emote)
08playing = false
09 
10script.Parent.MouseButton1Click:connect(function()
11    if playing == false then
12        emote:Play()
13        hum.WalkSpeed = 0
14        hum.JumpPower = 0
15        playing = true
View all 22 lines...

its in a textbutton and in that same button theres an animation called "Emote"

1
Does the script reload when the player dies? I.e is it in a GUI that has ResetOnSpawn to true? the8bitdude11 358 — 3y
0
it did not, thanks! steel_apples 58 — 3y
0
ok well, in that case, the issue is that you never re-define the character. Basically, the script is still looking at the old character that died. So you could simply fix this by adding a player.CharacterAdded part that auto updates the character variable the8bitdude11 358 — 3y
0
thanks steel_apples 58 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

i just had to have reset on spawn on. thanks the8bitdude11

Ad

Answer this question