Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. timer.Create( "NoclipCloak", 0.1, 0, function()
  2.  
  3.     for k,pl in pairs(player.GetAll()) do
  4.  
  5.                  local oldstate = pl:GetMoveType()
  6.  
  7.     if oldstate != MOVETYPE_NOCLIP or pl:InVehicle() then
  8.  
  9.             pl:SetColor(Color( 255, 255, 255, 255 ));
  10.             pl:SetNoDraw(false)
  11.            
  12.     else
  13.             pl:SetColor(Color( 255, 255, 255, 0 ));
  14.             pl:SetNoDraw(true)
  15.            
  16.  
  17.     end
  18.  
  19.  end
  20.  
  21. end )
  22.  
  23.  
  24. --SCRIPT DEBUG BY QUALITY <3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement