Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make Server chat messages?

Asked by 6 years ago

how do you make a server be able to create messages in chat? can you change the color? can this be done locally? can it be deleted after like 5 seconds?

1 answer

Log in to vote
1
Answered by
Optikk 499 Donator Moderation Voter
6 years ago

AFAIK, there are two ways to do this. One way is to create a chat bot with chat modules but I never successfully did that.

There is also

1StarterGui:SetCore("ChatMakeSystemMessage", dictionary<Variant> configTable)

But this function is intended for local scripts. You would have to use remote events to let the server message all players.

An example:

Server Script

01local remote = Instance.new('RemoteEvent')
02remote.Name = 'ServerMessageRemote'
03remote.Parent = game.ReplicatedStorage
04 
05function SendMessage(text)
06    remote:FireAllClients(text)
07end
08 
09game.Players.PlayerAdded:Connect(function(player)
10    SendMessage(player.Name .. ' has joined the server')
11end)

Local Script (in starter player scripts)

1local remote = game.ReplicatedStorage:WaitForChild('ServerMessageRemote')
2 
3remote.OnClientEvent:Connect(function(message)
4    game.StarterGui:SetCore('ChatMakeSystemMessage', {Text = message})
5end)
0
so can you do this for one player mattchew1010 396 — 6y
Ad

Answer this question