-- IntChat By _IntVade_
local Service = {
Players = game:GetService("Players"),
Chat = game:GetService("TextChatService"),
Run = game:GetService("RunService"),
Insert = Instance.new
}
local Command = {
Whisper = "w",
Global = "g",
Team = "t",
Server = "s",
}
Service.Chat.TextChatCommands:ClearAllChildren()
for i, v in pairs(Command) do
local New = Service.Insert("TextChatCommand")
New.Name = "RBX" .. i .. "Command"
New.PrimaryAlias = "/" .. string.upper(v)
New.SecondaryAlias = "/" .. string.upper(i)
New.Parent = Service.Chat.TextChatCommands
end
script.TextHandle.Parent = Service.Chat
Service.Chat.TextHandle.Enabled = true
```;