How do I make an ESP

I want to make an ESP for my admin cheats in my game but I don’t know how to go about doing it.
If someone could help me that would be great!

2 Likes
1 Like

Yes, But I want the esp to wrap around the head or humanoidrootpart like a selection box

this does not even work.

local HttpService = game:GetService("HttpService")
local Dummy = workspace.Dummy
local PixelsPerStud = 100

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

for i, v in pairs(FaceTable) do
	local SurfaceGui = Instance.new("SurfaceGui")
	SurfaceGui.AlwaysOnTop = true
	SurfaceGui.Face = v
	SurfaceGui.Name = HttpService:GenerateGUID()
	SurfaceGui.SizingMode = Enum.SurfaceGuiSizingMode.PixelsPerStud
	SurfaceGui.PixelsPerStud = PixelsPerStud 
	SurfaceGui.Parent = Dummy.HumanoidRootPart
end

Just create a new selection box and do if v:IsA(Part) then

Once that is done display a text box in the head. Boom ESP.

I dont know what you mean and selection boxes are not esp

You can for i,v check the player like if you trigger the command somehow, There will be a selection box created in every part of the player, Maybe add some sort of gui to make it glow or something.

Your description in the title and original post is pretty vague.
You should probably state something like “I want to create a glow (or whatever description you prefer) around a player’s head to simulate an ESP effect”.
The way you state it is just that you want to “make an ESP”, so we don’t know if you want the code to make the ESP work, or if you’re talking about a visual effect, or a Trail, or anything.

you can use boxhandleadornments or billboardguis

1 Like