Advertisement
PeaPattern

multi line

Jun 5th, 2024
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 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. local chars = getgenv().Chars
  16.  
  17. local weird = " " .. string.rep("ৌ", 44)
  18. local weird2 = " " .. string.rep("ৌ", 56)
  19. local weird3 = " " .. string.rep("ৌ", 57)
  20. Chat(("%s%s%s%s%s%s%s"):format(chars[1],weird,chars[2],weird2,chars[3],weird3,chars[4]))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement