Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I make this script only kill others, and not the one clicking the button?

Asked by 7 years ago
01unction onClick()
02for i_, players in pairs(game.Players:GetChildren()) do --gets list of characters
03    if players.Character ~= nil then --makes sure chracter/s is existent
04        players.Character:BreakJoints() --kills character
05    end
06 
07    end
08end
09 
10script.Parent.MouseButton1Click:connect(onClick)

2 answers

Log in to vote
1
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
7 years ago

You need to use the if statement on line 3 to determine whether or not 'players's Name is equivalent to the one clicking the button.

But this isn't going to work just on the client due to FilteringEnabled. You have to setup a RemoteEvent in ReplicatedStorage to tell the server to execute the code.

Use FireServer from a LocalScript and use the OnServerEvent event from the server to recieve the FireServer cal.

Script in ServerScriptStorage:

01local re = game.ReplicatedStorage.ClickedButton --This is your remote
02 
03function onClick(c)
04    for _, players in pairs(game.Players:Players()) do
05        if players.Name ~= c.Name then
06            players.Character:BreakJoints()
07        end
08    end
09end
10 
11re.OnServerEvent:Connect(onClick)

LocalScript:

1local re = game.ReplicatedStorage.ClickedButton --This is your remote
2 
3function onClick()
4    re:FireServer()
5end
6 
7script.Parent.MouseButton1Down:Connect(onClick)
Ad
Log in to vote
0
Answered by
RFL890 4
4 years ago
1function killOthers()
2    for _, v in pairs(game.Players:GetChildren()) do
3         local name = game.Players.LocalPlayer.Name
4         if not v.Character.Name == name then
5             v.Character.Head:Destroy()
6        end
7    end
8end
0
if you want to do this with an executor(do not endorse exploiting) then replace v.char.name == name with v.char.name == "YourName" RFL890 4 — 4y

Answer this question