Hi
I’m trying to add a channel in the chat for only certain people on or above a certain rank in my group but I can’t find a way how to make it or write the script.
Could you guys help me, please?
thanks!
You could make multiple channels fairly easily using basic UI that you could switch between using text buttons that check whether you have the correct permissions etc.
In terms of the chat itself you could use the Chat | Roblox Creator Documentation event to determine which chat they have open and the message they are trying to send. For example:
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(msg)
if player.AdminGUI.Visible == true then
-- put message in chat GUI
elseif player.NormalGUI.Visible == true then
-- put message in chat GUI
end
end)
end)
I want to replace the ‘systems’ chat with ‘staff chat’, for my staff to talk in,
What is that chat system called? I really want that for my game.
It’s from ROBLOX itself, you need to go in game and copy those scripts;when you’re out of play mode; paste in the scripts. And edit the variables, the bubble chat script
Thank you! This really helped but sadly if somebody didn’t have that much coding experience they wouldn’t know where to look like that only enabled bubble chat, But luckily I knew what to do, So I’ll still say thank you.