Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
Optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
ttwizz committed Mar 28, 2024
1 parent 435f3e2 commit f12d09c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ end
--! ESP Library

local ESPLibrary = {}
ESPLibrary.__index = ESPLibrary

function ESPLibrary:Initialize(Target)
if not Fluent then
Expand All @@ -1015,8 +1014,7 @@ function ESPLibrary:Initialize(Target)
elseif not Target then
return nil
end
local self = {}
setmetatable(self, ESPLibrary)
local self = setmetatable(self, { __index = ESPLibrary })
self.Player = Players:GetPlayerFromCharacter(Target)
self.Character = Target
self.ESPBox = Visualize("ESPBox")
Expand Down

0 comments on commit f12d09c

Please sign in to comment.