SHOW:
|
|
- or go back to the newest paste.
1 | wait(1) | |
2 | - | local Plr = game.Players.lykaspars4 --replace "lykaspars4" to your name in-game |
2 | + | local Plr = game.Players.RoyalOOBatManOo --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) |