Advertisement
DrakerMaker

Shouts

May 26th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. local m = Instance.new("Hint")
  2.  
  3. m.Parent = workspace
  4.  
  5. m.Text = "Everyones their own shouter! - "..game.Players.LocalPlayer.Name
  6.  
  7. wait(3)
  8. m.Text = "Everyones their own shouter!"
  9. wait()
  10. m.Text = "Everyones their own shouter"
  11. wait()
  12. m.Text = "Everyones their own shoute"
  13. wait()
  14. m.Text = "Everyones their own shout"
  15. wait()
  16. m.Text = "Everyones their own shou"
  17. wait()
  18. m.Text = "Everyones their own sho"
  19. wait()
  20. m.Text = "Everyones their own sh"
  21. wait()
  22. m.Text = "Everyones their own s"
  23. wait()
  24. m.Text = "Everyones their ow"
  25. wait()
  26. m.Text = "Everyones their o"
  27. wait()
  28. m.Text = "Everyones thei"
  29. wait()
  30. m.Text = "Everyones the"
  31. wait()
  32. m.Text = "Everyones th"
  33. wait()
  34. m.Text = "Everyones t"
  35. wait()
  36. m.Text = "Everyone"
  37. wait()
  38. m.Text = "Everyon"
  39. wait()
  40. m.Text = "Everyo"
  41. wait()
  42. m.Text = "Every"
  43. wait()
  44. m.Text = "Ever"
  45. wait()
  46. m.Text = "Eve"
  47. wait()
  48. m.Text = "Ev"
  49. wait()
  50. m.Text = "E"
  51. wait()
  52. m:Destroy()
  53.  
  54. local shoutm = Instance.new("Hint")
  55. shoutm.Parent = workspace
  56. shoutm.Text = "Shout here!"
  57.  
  58. function onChatted(msg, recipient, speaker)
  59. source = string.lower(speaker.Name)
  60. msg = string.lower(msg)
  61. shoutm.Text = msg
  62. end
  63.  
  64. game.Players.ChildAdded:connect(function(plr)
  65. plr.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, plr) end)
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement