01 | unction onClick() |
02 | for 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 |
08 | end |
09 |
10 | script.Parent.MouseButton 1 Click:connect(onClick) |
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:
01 | local re = game.ReplicatedStorage.ClickedButton --This is your remote |
02 |
03 | function 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 |
09 | end |
10 |
11 | re.OnServerEvent:Connect(onClick) |
LocalScript:
1 | local re = game.ReplicatedStorage.ClickedButton --This is your remote |
2 |
3 | function onClick() |
4 | re:FireServer() |
5 | end |
6 |
7 | script.Parent.MouseButton 1 Down:Connect(onClick) |
1 | function 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 |
8 | end |