Advertisement
Azzy_Dreamer

Hyperdeath Voice

Jan 16th, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Asset = "http://www.roblox.com/asset?id="
  2. local Plr = game.Players.LocalPlayer
  3. local PChar = Plr.Character
  4. local Mouse = Plr:GetMouse()
  5. local Debounce = true
  6.  
  7. Plr.Chatted:connect(function(ChatM)
  8. local PapVoice = Instance.new("Sound", PChar.Head)
  9. PapVoice.SoundId = "http://www.roblox.com/asset/?id=387515658"
  10. local Hint = Instance.new("Hint", game.Workspace)
  11. for i = 0, #ChatM do
  12. wait(0.1)
  13. Hint.Text = "Asriel Dreemurr: "..string.sub(ChatM, 1, i)
  14. PapVoice:Play()
  15. end
  16. wait(1)
  17. Hint:Destroy()
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement