I want to change the tone, to 'friendly' or something when I use the game:getsevice("Chat") thing.
game:GetService("Chat"):Chat(Player.Character,'ENTRY GRANTED')
Is there something I can change in order to set the tone when I chat this player?
The 3rd argument is ChatColor. That is just the color of the chat message. https://developer.roblox.com/en-us/api-reference/enum/ChatColor game:GetService("Chat"):Chat(Player.Character,'ENTRY GRANTED', Enum.ChatColor.Green)
thanks pidgey