SayMessageRequest - Event . Chat spam issues

Hi, I found a problem with this “SayMessageRequest” event that allows exploits to spam the chat that delays the entire server. But this messages didnt show in chat logs
image
image

This is the exploiters script

local Message = "⛓" 
local Unicode = " "
Message = Message .. Unicode:rep(200 - #Message)

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local SayMessageRequest = ReplicatedStorage:FindFirstChild("SayMessageRequest", true)

if SayMessageRequest then
    for i = 1, 7 do
        SayMessageRequest:FireServer(Message, "All")
    end
end

I found a solution to this problem, and I have a question for you guys. if roblox allows it, can I fix it this way?

if not game:IsLoaded() then
    game.Loaded:wait()
end

local Players = game:GetService("Players")

local Player = Players.LocalPlayer
local PlayerGui = Player.PlayerGui

local Chat = PlayerGui:FindFirstChild("Chat") 
local MessageDisplay = Chat and Chat:FindFirstChild("Frame_MessageLogDisplay", true)
local Scroller = MessageDisplay and MessageDisplay:FindFirstChild("Scroller")

local Gsub = string.gsub
local Lower = string.lower

if not Scroller then return end

for _, x in next, Scroller:GetChildren() do
    local MessageTextLabel = x:FindFirstChildWhichIsA("TextLabel")
        
    if MessageTextLabel then
        local Message = Gsub(MessageTextLabel.Text, "^%s+", "")
        
        if Message:match(" ") then
            x:Destroy()
        end
    end
end

local ChatAdded = Scroller.ChildAdded:Connect(function(x)
    local MessageTextLabel = x:FindFirstChildWhichIsA("TextLabel")
    local SenderTextButton = MessageTextLabel and MessageTextLabel:FindFirstChildWhichIsA("TextButton")
    if MessageTextLabel and SenderTextButton then
        repeat task.wait() until not MessageTextLabel.Text:match("__+")
        local Message = Gsub(MessageTextLabel.Text, "^%s+", "")
        
        if Message:match(" ") then
            x:Destroy()
        end
    end
end)

I don’t think you can get in trouble for using that code.

1 Like

Why wont you just straight away server ban the unicode abuser?

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.