Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ [!!] Hello, user! This script is the chat sans script, re-made by TheFlamingBlaster
- 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,
- that'd be copying, which is a bannable offence at voidacity's script builder! You wouldn't want to get banned there, would
- you? If you'd like to add credit to your script, please place it below this message, thanks! TheFlamingBlaster, 2016--]]
- yourname = "sethcuzzone5"
- local player = game.Players[sethcuzzone5]
- player.Chatted:connect(function(msg)
- for index, child in pairs(player.Character.Head:GetChildren()) do
- if child:IsA("BillboardGui") then
- child:Destroy()
- end
- end
- local newThread = coroutine.create(function()
- local wards = {}
- local i = 1
- for w in string.gmatch(msg, ".") do
- table.insert(wards,i,w)
- i = i + 1
- end
- local bill = Instance.new("BillboardGui",player.Character.Head)
- bill.Size = UDim2.new(0, 400,0, 100)
- bill.StudsOffset = Vector3.new(0,6,0)
- local txt = Instance.new("TextLabel",bill)
- 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
- txt.Size = UDim2.new(1,0,1,0)
- for index, child in pairs(wards) do
- txt.Text = (txt.Text..child)
- local snd = Instance.new("Sound",player.Character.Head) snd.SoundId = "rbxassetid://358280695" snd.Volume = 1 snd:Play()
- wait(0.0015)
- end
- end)
- coroutine.resume(newThread)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement