how to?
how do i make so my wall hack gets disabled if im dead?
My current code(the part whit bald is probably wrong somehow)
My current code(the part whit bald is probably wrong somehow)
Code:
LocalPlayer():ChatPrint("Names Loaded")
hook.Add( "HUDPaint", "Wallhack", function()
for k,v in pairs ( player.GetAll() ) do
if(LocalPlayer():Alive() = true) then
local Position = ( v:GetPos() + Vector( 0,0,80 ) ):ToScreen()
draw.DrawText( v:Name(), "ChatFont", Position.x, Position.y, Color( 10, 255, 0, 255 ), 1 )
else
LocalPlayer():ChatPrint("names off")
end
end )

