Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1)
- local Plr = game.Players.RoyalOOBatManOo --replace "lykaspars4" to your name in-game
- Plr.Chatted:connect(function(msg)
- if msg == ":HideChat" then
- script:Destroy()
- end
- local bbg = Instance.new("BillboardGui", Plr.Character.Head)
- bbg.Name = "Saying"
- bbg.Enabled = true
- bbg.Size = UDim2.new(0, 200, 0, 50)
- local TxtLabel = Instance.new("TextLabel", Plr.Character.Head.Saying)
- TxtLabel.Position = UDim2.new(0, 150, 0, 0)
- TxtLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TxtLabel.BorderColor3 = Color3.new(0, 0, 0)
- TxtLabel.TextColor3 = Color3.new(158, 158, 158)
- TxtLabel.Text = msg
- TxtLabel.Size = UDim2.new(0, 200, 0, 50)
- wait(4)
- bbg:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement