Advertisement
Guest User

ROBLOX Bubble Chat

a guest
Nov 24th, 2019
6,679
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. --[[Made by cinnamonber
  2.  
  3. This creates dialog bubbles above your head when you talk in all 3 colors :P
  4.  
  5. Just put this script in workspace
  6. ]]
  7.  
  8. game.Players.ChildAdded:connect(function(plry) -- PlayerAdded glitches =/
  9. if plry:IsA("Player") then
  10. plry.Chatted:connect(function(msg)
  11. local color = {"White"} -- The only 3 colors, adding more will error.
  12. local chat = game:GetService("Chat")
  13. chat:Chat( plry.Character.Head, msg, color[math.random(1,1)] )
  14. end)
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement