Garry's Mod

HOW TO KILL?

Submitted by vl_chief, , Thread ID: 99683

Thread Closed

RE: HOW TO KILL?

UAVXP
Newbie
Level:
0
Reputation:
0
Posts:
14
Likes:
0
Credits:
0
31-10-2018, 04:35 PM
This post was last modified: 31-10-2018, 04:38 PM by UAVXP
#11
Well, there's actually a silent kill feature in Gmod Lua -Player:KillSilent()("Kills a player without notifying the rest of the server.")
Here's the code:



Code:
for k, v in pairs( player.GetAll() ) do
v:KillSilent()
end
This will kill all of players on your server silently. Make sure you're running this on serverside of course

Another example, this code will kill everyone except described player namesthis time:
Code:
local killless = {}

-- Each line for each player you don't want to silently kill
killless["full player name here"] = true

for k, v in pairs( player.GetAll() ) do
-- Check if this player is on our non-killing list.
-- If it is - then pass this loop
if killless[v:Name()] == true then continue end

-- Else - kill the player
v:KillSilent()
end

RE: HOW TO KILL?

Kermit2781
Active Member
Level:
0
Reputation:
2
Posts:
331
Likes:
18
Credits:
45
01-11-2018, 09:56 PM
#12
Or you can just get any kind of free or paid aimbot if your that bad

RE: HOW TO KILL?

959f
Member
Level:
0
Reputation:
0
Posts:
177
Likes:
0
Credits:
0
03-11-2018, 12:26 PM
#13
Just try to download E2 addon and use chips for killing

Users browsing this thread: 1 Guest(s)