Advertisement
TryHarderNoob

fffffffffffff

Jan 6th, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --[[ [!!] Hello, user! This script is the chat sans script, re-made by TheFlamingBlaster
  2. I give you 100% permission to modify, distrubute and use this script as long as you keep this comment in-tact. If you don't,
  3. that'd be copying, which is a bannable offence at voidacity's script builder! You wouldn't want to get banned there, would
  4. you? If you'd like to add credit to your script, please place it below this message, thanks! TheFlamingBlaster, 2016--]]
  5. yourname = "sethcuzzone5"
  6. local player = game.Players[sethcuzzone5]
  7. player.Chatted:connect(function(msg)
  8. for index, child in pairs(player.Character.Head:GetChildren()) do
  9. if child:IsA("BillboardGui") then
  10. child:Destroy()
  11. end
  12. end
  13. local newThread = coroutine.create(function()
  14. local wards = {}
  15. local i = 1
  16. for w in string.gmatch(msg, ".") do
  17. table.insert(wards,i,w)
  18. i = i + 1
  19. end
  20. local bill = Instance.new("BillboardGui",player.Character.Head)
  21. bill.Size = UDim2.new(0, 400,0, 100)
  22.  
  23. bill.StudsOffset = Vector3.new(0,6,0)
  24. local txt = Instance.new("TextLabel",bill)
  25. 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
  26. txt.Size = UDim2.new(1,0,1,0)
  27. for index, child in pairs(wards) do
  28. txt.Text = (txt.Text..child)
  29. local snd = Instance.new("Sound",player.Character.Head) snd.SoundId = "rbxassetid://358280695" snd.Volume = 1 snd:Play()
  30. wait(0.0015)
  31. end
  32.  
  33. end)
  34. coroutine.resume(newThread)
  35.  
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement