Hello!
Basically I have a chat message system, but when you join the game the messages appear I want them to show up in chat 15 seconds after the player has joined.
Hello!
Basically I have a chat message system, but when you join the game the messages appear I want them to show up in chat 15 seconds after the player has joined.
You can disable the chat when player join.
Example:
game.Players.PlayerAdded:Connect(function(plr)
game.replicatedStorage.RemoteEvent:FireClient(plr)
end)
game.ReplicatedStorage.RemoteEvent.OnClientEvent(function()
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
wait(15)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
end)