Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --https://www.youtube.com/watch?v=10zD02hW2kw
- 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
Add Comment
Please, Sign In to add comment