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.

Simple auto click

Version / Update: v1.0.0
Download / Script Link
local vu = game:GetService("VirtualUser")
local UIS = game:GetService("UserInputService")

local enabled = false

UIS.InputBegan:Connect(function(input, gpe)
if input.KeyCode == Enum.KeyCode.F and not gpe then
enabled = not enabled
print("Auto Click:", enabled)
end
end)

task.spawn(function()
while true do
task.wait(0.2)
if enabled then
vu:Button1Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame)
vu:Button1Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame)
end
end
end)
[ View More ]
ea26a45a-d407-42b8-8ecc-6baa048b55dd.webp


It just click automatically. ⚠️⚠️ PRESS F TO TOGGLE!!! ⚠️⚠️
 
Works on mobile
  1. Yes
Back
Top