for i = 1, #chatsMAD do
task.wait(1.5)
local R = 175
local G = 148
local B = 131
R += 30
Guy.Color = Color3.fromRGB(R, G, B)
ChatService:Chat(Guy, chatsMAD[i], Enum.ChatColor.Green)
end
idk why it wotn work, ive never tried to change color values individually
all the values matter, i need red to start at the value its at, becuase the colors are for a characters head. so its gotta be the skintone, then it gets more red because hes mad
for i = 1, #chatsMAD do
task.wait(1.5)
Guy.Color = Color3.fromRGB(math.clamp(Guy.Color.R + 30, 0, 255), 148, 131)
ChatService:Chat(Guy, chatsMAD[i], Enum.ChatColor.Green)
end