Testing Lab
Analyzing: Universal Hitbox Extender
18
Lines
--
Functions
--
Security
--
Performance
--
Quality
--
Issues
Source Code
18 lines
1
_G.HeadSize = 50
2
_G.Disabled = true
3
4
game:GetService('RunService').RenderStepped:connect(function()
5
if _G.Disabled then
6
for i,v in next, game:GetService('Players'):GetPlayers() do
7
if v.Name ~= game:GetService('Players').LocalPlayer.Name then
8
pcall(function()
9
v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
10
v.Character.HumanoidRootPart.Transparency = 0.7
11
v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
12
v.Character.HumanoidRootPart.Material = "Neon"
13
v.Character.HumanoidRootPart.CanCollide = false
14
end)
15
end
16
end
17
end
18
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!