Creating Chatlogs

Hey Developers, so I’m creating an admin system and I can’t seem to achieve creating custom chatlogs (through the game if you click a button) Once I knew I couldn’t figure it out after hours of trying I eventually went on youtube and here as well and it just shows discord chatlogs basically hooking up an API which I don’t want.

Here is an example of what I’m looking for -
image

Anything will help :smile: :+1:

3 Likes

Maybe this video will help: [CHECK DESCRIPTION FOR NEW VERSION] How To Make A Custom Chat | HowToRoblox - YouTube

1 Like

You can try using Player.Chatted on the server and then filtering the message and sending it back to all clients who have access to chat logs through a remote event

Player.Chatted:Connect(function(Message)
	print(string.format("[%s]: %s", Player.Name, Message))
end)

image

2 Likes