Advertisement
Guest User

Untitled

a guest
May 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. local function highlight(ply, cmd, args)
  2. for k, v in pairs(player.GetAll()) do
  3. if string.find(v:Name(), args[1]) then
  4. v:SetColor(201, 138, 138, 255)
  5. v:SetMaterial( "models/wireframe" )
  6. end
  7. end
  8. end
  9. concommand.Add("blah", highlight)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement