- Статус
- Оффлайн
- Регистрация
- 11 Янв 2018
- Сообщения
- 2,410
- Реакции
- 454
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Код написан на LUA.
Less:
local function getPlayer(speaker)
return game.Players:FindFirstChild(speaker)
end
local function isScam(content)
local content1 = string.lower(content)
if content1:find("robux")then
return true
end
end
local function Run(ChatService)
local function ParseMessage(speakerName, message, channel)
if isScam(message) then
return true
end
return false
end
ChatService:RegisterProcessCommandsFunction("scamDetector", ParseMessage)
end
return Run