I would like someone to make me something that would tell if someone is with a small tag saying "Admin" above their head. Sort of like an ESP.
If thats possible :)
Could you please explain more? What kind of gamemode is this? Do you want it to be an addon? Is this for personal use?
[lua]
hook.Add("HUDPaint", "AdminESP", function()
for _, ply in (player.GetAll()) do
if (ply != LocalPlayer()) and (ply:IsAdmin()) then
local x, y = ply:GetPos():ToScreen()
draw.SimpleText("[ADMIN]" .. ply:Nick(), "UIBold", x, y, Color(255, 0, 0, 255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
end
end
end)
[/lua]
Is this working for newest DarkRP Version ?
Sorry but i don't wanted to make a new thread about this.
[highlight](User was banned for this post ("Necrobump" - SteveUK))[/highlight]
Sorry, you need to Log In to post a reply to this thread.