
Thank for using out script for BOXING BETA, Enjoy!
local Old;
local Character = game.Players.LocalPlayer.Character
Old = hookmetamethod(game,’__namecall’,function(Self,…)
local Method = getnamecallmethod()
local Args = {…}
if Method == ‘GetAttribute’ and Self == Character and Args[1] == ‘Stamina’ then
return 99
end
return Old(Self,…)
end)