ManityMan

WIP roblox Chat

Jan 17th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. char = workspace:WaitForChild(plr.Name)
  3. hum = char.Humanoid
  4. orange = Color3.new(0, 0, 85)
  5.  
  6. base = Instance.new("ScreenGui",plr.PlayerGui)
  7. bbg = Instance.new("BillboardGui",plr.Character.Head)
  8. bbg.Size = UDim2.new(0,200,0,50)
  9. bbg.StudsOffset = Vector3.new(0,3,0)
  10. bbgTl = Instance.new("TextLabel",bbg)
  11. bbgTl.BackgroundTransparency = 1
  12. bbgTl.Size = UDim2.new(10,0,1,0)
  13. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  14. bbgTl.Font = "Bodoni"
  15. bbgTl.Text = ""
  16. bbgTl.TextSize = 50
  17. bbgTl.TextStrokeColor3 = Color3.new(1,1,1)
  18. bbgTl.TextColor3 = orange
  19. bbgTl.TextStrokeTransparency = 0
  20. bbgTl.TextWrapped = true
  21. plr.Chatted:connect(function(msg)
  22. bbgTl.Text = msg
  23. wait(5)
  24. if bbgTl.Text == msg then
  25. bbgTl.Text = " "
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment