HuyEvilDumb

Untitled

Nov 8th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. function chatfunc2(text)
  2. local chat = coroutine.wrap(function()
  3. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  4. Character:FindFirstChild("TalkingBillBoard"):destroy()
  5. end
  6. local naeeym2 = Instance.new("BillboardGui",Character)
  7. naeeym2.Size = UDim2.new(0,100,0,40)
  8. naeeym2.StudsOffset = Vector3.new(0,3,0)
  9. naeeym2.Adornee = Head
  10. naeeym2.Name = "TalkingBillBoard"
  11. local tecks2 = Instance.new("TextLabel",naeeym2)
  12. tecks2.BackgroundTransparency = 1
  13. tecks2.BorderSizePixel = 0
  14. tecks2.Text = ""
  15. tecks2.Font = "Fantasy"
  16. tecks2.FontSize = "Size24"
  17. tecks2.TextStrokeTransparency = 0
  18. tecks2.TextColor3 = BrickColor.new(colortwo).Color
  19. tecks2.TextStrokeColor3 = BrickColor.new(colorthree).Color
  20. tecks2.Size = UDim2.new(1,0,0.5,0)
  21. local shk = coroutine.wrap(function()
  22. while tecks2 ~= nil do
  23. wait(.05)
  24. tecks2.Position = UDim2.new(0,math.random(-3,3),0,math.random(-3,3))
  25. end
  26. end)
  27. shk()
  28. for i = 1,string.len(text),1 do
  29. CFuncs.Sound.Create("rbxassetid://358280695", Torso, 2, 0.5)
  30. tecks2.Text = string.sub(text,1,i)
  31. wait(0.01)
  32. end
  33. wait(1)
  34. for i = 1, 5 do
  35. wait(.01)
  36. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  37. tecks2.Rotation = tecks2.Rotation + 2
  38. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  39. tecks2.TextTransparency = tecks2.TextTransparency + .2
  40. end
  41. naeeym2:Destroy()
  42. end)
  43. chat()
  44. end
  45. function onChatted(msg)
  46. chatfunc(msg)
  47. end
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54. local Transforming = false
  55. Transforming = true
  56.  
  57. chatfunc("So you finally made it...")
  58.  
  59. wait(4)
  60.  
  61. chatfunc("Final warning pal.")
  62.  
  63. wait(6)
  64.  
  65. chatfunc("Trust me, I wouldn't want to fight me either...")
  66.  
  67. wait(4)
  68.  
  69. chatfunc("Here goes nothing...")
  70.  
  71. wait(4)
Advertisement
Add Comment
Please, Sign In to add comment