NPC Not Chatting correctly

Hello getting an error: partOrCharacter is not a legal character

The workspace.Dev is a character

local ChatService = game:GetService("Chat")
local talkpart = workspace.Dev


	ChatService:Chat(talkpart, "Hello,", "Red")
	wait(1)
	ChatService:Chat(talkpart, "World!", "Blue")
	wait(1)
	ChatService:Chat(talkpart, "Hello World!", "White")
	wait(1)
3 Likes

never mind figured it out sorry

1 Like

How did you figure it out?
ignore this sentence

1 Like

What is your issue? I assume you have the same issue.

Yeah, I had the same issue but fixed it.

For those reading with the same issue:
For the first argument in :Chat(), you cannot specify a model if it is not a real player’s character model. Instead, specify the head part of that model.

9 Likes