This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local mem = LocalPlayer():GetEyeTrace().Entity | |
if mem then | |
mem = mem.Memory1 | |
end | |
if not mem then | |
print("either there is no entity or the entity has no memory") | |
return | |
end | |
local width = mem[1048573] or 0 | |
local height = mem[1048572] or 0 |
NewerOlder