Hello, could anyone help me make a chat log for free without Using Discord, Guilded, or Roblox Studio?
Thanks!
Hello, could anyone help me make a chat log for free without Using Discord, Guilded, or Roblox Studio?
Thanks!
I mean, if you’re simply looking to log chatlogs you can do the following. Need a little more information on where you plan to log this for an accurate response, but at the most basic level here it is with print statements. You could probably add the messages to a list which is displayable to the desired people with FireAllClients or something along those lines. Not sure the route you want to go with it.
game.Players.PlayerAdded:Connect(function(plr)
plr.Chatted:Connect(function(msg)
print(plr.Name.." chatted: "..msg)
end)
end)
Maybe like a data base that stores it? I could try using Google Apps Script for the Discord webhook because Roblox disabled you from being able to send things to Discord.
Just use a data store.
Additionally, how are you going to do anything without Roblox Studio?
I’m meaning not storing the chat logs in Roblox Studio.
I’m just going to make Roblox email chats to me like every 20 messages.