Advertisement
ProfessorPuddle

Roblox MM2 Script - MM2 Emotes

Dec 20th, 2020
2,877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. game.Players.LocalPlayer.Chatted:Connect(function(msg)
  2. if msg == "/e zen" then
  3. game.ReplicatedStorage.PlayEmote:Fire("zen")
  4. end
  5. if msg == "/e sit" then
  6. game.ReplicatedStorage.PlayEmote:Fire("sit")
  7. end
  8. if msg == "/e dab" then
  9. game.ReplicatedStorage.PlayEmote:Fire("dab")
  10. end
  11. if msg == "/e zombie" then
  12. game.ReplicatedStorage.PlayEmote:Fire("zombie")
  13. end
  14. if msg == "/e floss" then
  15. game.ReplicatedStorage.PlayEmote:Fire("floss")
  16. end
  17. if msg == "/e ninja" then
  18. game.ReplicatedStorage.PlayEmote:Fire("ninja")
  19. end
  20. if msg == "/e headless" then
  21. game.ReplicatedStorage.PlayEmote:Fire("headless")
  22. end
  23. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement