ic3w0lf22 / Unnamed-ESP

Player ESP for Roblox, fully undetectable, uses Synapse's built in drawing API
GNU General Public License v3.0
60 stars 100 forks source link

some questions about adding my own esp (personal use) #30

Closed Jolteon1234amongus closed 11 months ago

Jolteon1234amongus commented 1 year ago

I looked around in the script and I couldn't find what I was lookin for so yeah. How do I adjust line thickness and line transparency while using "CustomESP" as well as text outlines without changing the normal player esp settings? I also want to specify to use a box like how the normal esp works and make the studs away counter not below all the custom name and instead where ever I'd like.

what I did below idk how to make it use options and stuff

CustomESP = function() for i, v in pairs(game.Workspace.Live:GetChildren()) do if not game.Players:FindFirstChild(v.Name) then local head = v:FindFirstChild("Head") local hum = v:FindFirstChildOfClass("Humanoid")

   if head and hum then
    pcall(RenderList.AddOrUpdateInstance, RenderList, v, head, v.Name.."\n["..hum.Health.."/"..hum.MaxHealth.."]", Color3.fromRGB(7, 43, 244));
   end
 end

end end

ic3w0lf22 commented 1 year ago

I don't recommend using this as a custom ESP because it's

What I do recommend though is kiriot's ESP library since its a lot easier to use and also uses the drawing API. Not sure where you can find the documentation though.