Advertisement
Teerathornmoon3

Roblox Bubble Chat Setting (Basic)

Sep 30th, 2021
1,205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local ChatService = game:GetService("Chat")
  2. ChatService.BubbleChatEnabled = true
  3.  
  4. local bubbleChatSettings = {
  5.     BackgroundColor3 = Color3.fromRGB(255, 255, 255),
  6.     TextColor3 = Color3.fromRGB(21, 0, 255),
  7.     TextSize = 20,
  8.     Font = Enum.Font.Cartoon,
  9.     BubbleDuration = 5
  10. }
  11.  
  12. ChatService:SetBubbleChatSettings(bubbleChatSettings)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement