📅  最后修改于: 2022-03-11 14:58:17.305000             🧑  作者: Mango
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(msg)
if string.sub(msg,1,10) == "hey" then
print(player.Name.." said hi!")
end
end
end)