Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. wait(1)
  2. local Plr = game.Players.JamesVilliers --replace "lykaspars4" to your name in-game
  3.  
  4. Plr.Chatted:connect(function(msg)
  5. if msg == ":HideChat" then
  6. script:Destroy()
  7. end
  8. local bbg = Instance.new("BillboardGui", Plr.Character.Head)
  9. bbg.Name = "Saying"
  10. bbg.Enabled = true
  11. bbg.Size = UDim2.new(0, 200, 0, 50)
  12. local TxtLabel = Instance.new("TextLabel", Plr.Character.Head.Saying)
  13. TxtLabel.Position = UDim2.new(0, 150, 0, 0)
  14. TxtLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  15. TxtLabel.BorderColor3 = Color3.new(0, 0, 0)
  16. TxtLabel.TextColor3 = Color3.new(158, 158, 158)
  17. TxtLabel.Text = msg
  18. TxtLabel.Size = UDim2.new(0, 200, 0, 50)
  19. wait(4)
  20. bbg:Destroy()
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement