Advertisement
VincentYT

Emote sit

Jun 22nd, 2021
1,351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. playing = false
  2.  
  3. script.Parent.MouseButton1Click:connect(function()
  4. if playing == false then
  5. emote:Play()
  6. hum.WalkSpeed = 0
  7. hum.JumpPower = 0
  8. playing = true
  9. elseif playing == true then
  10. emote:Stop()
  11. hum.WalkSpeed = 16
  12. hum.JumpPower = 50
  13. playing = false
  14. end
  15. end)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement