Advertisement
PeaPattern

long bubble chat

Jun 5th, 2024
8,471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  2. local TextChatService = game:GetService("TextChatService")
  3. local IsLegacy = (TextChatService.ChatVersion == Enum.ChatVersion.LegacyChatService)
  4. local ChatRemote = ReplicatedStorage:FindFirstChild("SayMessageRequest", true)
  5. local Channel = not IsLegacy and TextChatService.TextChannels.RBXGeneral
  6.  
  7. local Chat = function(Message)
  8.     if IsLegacy then
  9.         ChatRemote:FireServer(Message, "All")
  10.     else
  11.         Channel:SendAsync(Message)
  12.     end
  13. end
  14.  
  15. Chat(" "..string.rep("ৌ", 199))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement