What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

OP Chat Spam AI Script

Version / Update: v1.0.0
Download / Script Link
-- Settings
local SPAM_MESSAGE = "Example" -- Your message here
local WAIT_TIME = 10 -- Seconds between messages (9 - 12 is recommended)
local TOGGLE_KEY = Enum.KeyCode.J

local Players = game:GetService("Players")
local UIS = game:GetService("UserInputService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local enabled = false
local chatRemote = ReplicatedStorage:FindFirstChild("SayMessageRequest", true)

-- Toggle logic
UIS.InputBegan:Connect(function(input, processed)
if processed then return end
if input.KeyCode == TOGGLE_KEY then
enabled = not enabled
print("Spammer is now: " .. (enabled and "ON" or "OFF"))
end
end)

-- Main Loop
task.spawn(function()
while true do
if enabled then
-- Check for legacy Chat (RemoteEvent) or New TextChatService
if chatRemote and chatRemote:IsA("RemoteEvent") then
chatRemote:FireServer(SPAM_MESSAGE, "All")
else
-- Fallback for newer games
local textService = game:GetService("TextChatService")
if textService.ChatVersion == Enum.ChatVersion.TextChatService then
textService.TextChannels.RBXGeneral:SendAsync(SPAM_MESSAGE)
end
end
end
task.wait(WAIT_TIME)
end
end)
[ View More ]
f8ed5397-f74a-4847-a966-199c3838d03a.webp


AI SCRIPT [made my GOOGLE_GEMINI]Use This In ANY Game.Press J, Mobile Unsopported.
 
Back
Top