Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local user = game.Players.LocalPlayer
- user.Chatted:Connect(function(message)
- local gui = Instance.new("BillboardGui", user.Character)
- gui.ExtentsOffset.Y = 3
- local UICorner = Instance.new("UICorner", gui)
- gui.Adornee = user.Character.Head
- gui.Size = UDim2.new(2, 0, 2, 0)
- local text = Instance.new("TextLabel", gui)
- text.Size = UDim2.new(1, 0, 1, 0)
- text.Text = message
- end)
Add Comment
Please, Sign In to add comment