Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local rank_autoriser = {
  2.     ["superadmin"]=true,
  3.     ["admin"]=true,
  4. }
  5.  
  6. hook.Add("HUDShouldDraw","enlever-info-joueur-darkrp", function(h)
  7.     if h == "DarkRP_EntityDisplay" and !rank_autoriser[LocalPlayer():GetUserGroup()] && team.GetName( LocalPlayer():Team() ) == "Maire" then
  8.         return false
  9.     end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement