ESP and Chams ESP Broken?

I think it looks good what about you but I do have one problem the ESP on shows up if you manually Disable and Enable it and then it appears and I do not know why?

Code:


--Chams

for Number, Instance2 in pairs(LocalPlayerCharacter:GetChildren()) do
	if Instance2:IsA("BasePart") then
		local BoxHandleAdornment = Instance.new("BoxHandleAdornment")
		BoxHandleAdornment.Adornee = Instance2
		BoxHandleAdornment.AlwaysOnTop = true
		BoxHandleAdornment.Size = Instance2.Size
		BoxHandleAdornment.ZIndex = 0
		BoxHandleAdornment.Parent = Instance2
	end
end

--ESP

local Table = {
	"Back",
	"Bottom",
	"Front",
	"Left",
	"Right",
	"Top"
}

for Number, Instance2 in pairs(LocalPlayerCharacter:GetChildren()) do
	if Instance2:IsA("BasePart") then
		for Number, String in pairs(Table) do
			local SurfaceGui = Instance.new("SurfaceGui")
			SurfaceGui.Adornee = Instance2
			SurfaceGui.AlwaysOnTop = true
			SurfaceGui.Face = String
			SurfaceGui.Parent = Instance2
		end
	end
end

:+1:

3 Likes

Use Highlights for ESP’s, well cleaner.
Also for shit like Boxes and Names, ect use Billboard GUI