yes indeed
local chatters = {"Admin","Better_Admin","Owner"}
game.Players.PlayerAdded:connect(function(plr)
plr.Chatted:connect(function(msg)
if msg == "your command here" then
ColorChange(arguments for model) -- previously defined function to change model colors
elseif msg == "other command" then
ColorChange(arguments for model)
end
end)
end)
something along those lines
~ S P I C Y ~ |