Ejemplo 1: Cómo hacer Bubble Chat en Roblox Studio
local ChatService = game:GetService("Chat")
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
return {BubbleChatEnabled = true}
end)
--Made By Rigby#9052 on Discord
Ejemplo 2: Cómo hacer un script de chat de burbujas
local Chat = game:GetService("Chat")
local function setUpChatWindow()
return { BubbleChatEnabled = true }
end
Chat:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, setUpChatWindow)
---Script By Rigby#9052 on Discord
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)