this script just stops working once you die. no clue why tho
01 | local player = game.Players.LocalPlayer |
02 | local character = player.Character |
03 | repeat wait() |
04 | character = player.Character |
05 | until character |
06 | local hum = character:WaitForChild( "Humanoid" ) |
07 | local emote = hum:LoadAnimation(script.Parent.Emote) |
08 | playing = false |
09 |
10 | script.Parent.MouseButton 1 Click:connect( function () |
11 | if playing = = false then |
12 | emote:Play() |
13 | hum.WalkSpeed = 0 |
14 | hum.JumpPower = 0 |
15 | playing = true |
its in a textbutton and in that same button theres an animation called "Emote"