Testing Lab
Analyzing: auto click E
21
Lines
--
Functions
--
Security
--
Performance
--
Quality
--
Issues
Source Code
21 lines
1
local holding = false
2
3
UserInputService.InputBegan:Connect(function(input)
4
if input.KeyCode == Enum.KeyCode.E then
5
holding = true
6
7
while holding do
8
local cd = getNearestClickDetector()
9
if cd then
10
fireclickdetector(cd)
11
end
12
task.wait(0.2)
13
end
14
end
15
end)
16
17
UserInputService.InputEnded:Connect(function(input)
18
if input.KeyCode == Enum.KeyCode.E then
19
holding = false
20
end
21
end)
Ready to Analyze
Click "Run Analysis" to scan the script for issues
Security Analysis
Run analysis to see security details
Performance Analysis
Run analysis to see performance metrics
Code Quality
Run analysis to see quality metrics
Code Metrics
Run analysis to see detailed metrics
Dependencies
Run analysis to detect dependencies
Console Output
Analysis logs will appear here
Running comprehensive analysis...
Copied!