Advertisement
TheFlamingBlaster

san2

Jun 16th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. yourname = "TheFlamingBlaster"
  2. local player = game.Players[yourname]
  3. player.Chatted:connect(function(msg)
  4. local newThread = coroutine.create(function()
  5. local wards = {}
  6. local i = 1
  7. for w in string.gmatch(msg, ".") do
  8. table.insert(wards,i,w)
  9. i = i + 1
  10. end
  11. local bill = Instance.new("BillboardGui",player.Character.Head)
  12. bill.Size = UDim2.new(0, 400,0, 100)
  13.  
  14. bill.StudsOffset = Vector3.new(0,6,0)
  15. local txt = Instance.new("TextLabel",bill)
  16. txt.Text = "* " txt.TextWrapped = true txt.TextScaled = true txt.Transparency = 0 txt.TextColor3 = Color3.new(1,1,1) txt.BackgroundColor3 = Color3.new(0,0,0) txt.BorderColor3 = Color3.new(1,1,1) txt.BorderSizePixel = 5
  17. txt.Size = UDim2.new(1,0,1,0)
  18. for index, child in pairs(wards) do
  19. txt.Text = (txt.Text..child)
  20. local snd = Instance.new("Sound",player.Character.Head) snd.SoundId = "rbxassetid://358280695" snd.Volume = 1 snd:Play()
  21. wait(0.0015)
  22. end
  23. wait(1)
  24. txt:Destroy()
  25. end)
  26. coroutine.resume(newThread)
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement