Free
script.lua
21 lines
local holding = false
UserInputService.InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.E then
holding = true
while holding do
local cd = getNearestClickDetector()
if cd then
fireclickdetector(cd)
end
task.wait(0.2)
end
end
end)
UserInputService.InputEnded:Connect(function(input)
if input.KeyCode == Enum.KeyCode.E then
holding = false
end
end)
Description
auto clicking fireclickdetector (m1) when holding E
Changelog
v1.1
Supported Executors 3
Delta
Solara
Xeno
Comments 0
Login to comment
Loading comments...
Copied!