So I'm trying to make an object chat and I used the chat service but It doesn't seem to be working, Can anyone help?
here's the code
local ChatService = game:GetService("Chat") local part = Instance.new("Part") part.Anchored = true part.Parent = workspace ChatService:Chat(part, "Blame John!", "Red")
local ChatService = game:GetService("Chat") local part = Instance.new("Part") part.Anchored = true part.Parent = workspace game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) ChatService:Chat(part, "Blame John!", "Red") end) end)
It is chatting, but it's too fast. It chats immediately before the game loads. The script above will wait until your character loads into the game, then it chats.