Advertisement
End_Wolf

Untitled

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