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.

Cube V4 Spam Bots

Version / Update: v1.0.0
Download / Script Link
local UserInputService = game:GetService('UserInputService')
local remote = game:GetService('ReplicatedStorage').Applications.Events.NewBot

local cooldown = 2.4
local holding = false

local arguments = {
[1] = 'sometimesimwise', -- replace with username
[2] = false,
[3] = 'Futa',
}

local function invokeWithCooldown()
while holding do
local results = remote:InvokeServer(unpack(arguments))
task.wait(cooldown)
end
end

UserInputService.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then
return
end
if input.KeyCode == Enum.KeyCode.U then
if not holding then
holding = true
task.spawn(invokeWithCooldown)
end
end
end)

UserInputService.InputEnded:Connect(function(input, gameProcessed)
if input.KeyCode == Enum.KeyCode.U then
holding = false
end
end)
[ View More ]
79de2620-6bf5-4faf-a56a-24412abc95db.webp


just hold u and itll spam bots
 
Works on mobile
  1. Yes
Back
Top