1 | local ChatService = game:GetService( "Chat" ) |
2 | while true do |
3 | wait( 5 ) |
4 | ChatService:Chat((script.Parent), "I Sell Tacos" , "Red" ) |
5 | end |
What's wrong with this script?
The third argument on line 4 needs to be a ChatColor, so put Enum.ChatColor.Red
there