Scripts Games Try Our Executor
Login Sign Up

Testing Lab

Analyzing: Inf Stamina Open source

Back to Script
14 Lines
-- Functions
-- Security
-- Performance
-- Quality
-- Issues
Source Code 14 lines
1 local ReplicatedStorage = game:GetService("ReplicatedStorage")
2 local sprintRemote = ReplicatedStorage.remotes.RequestSprintAction
3
4 local old
5 old = hookmetamethod(game, "__namecall", function(self, ...)
6 local method = getnamecallmethod()
7 if method == "FireServer"
8 and self == sprintRemote
9 and select(1, ...) == "SpeedTarget"
10 then
11 return old(self, "SpeedTarget", 0)
12 end
13 return old(self, ...)
14 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!