Hi, I'm making a minigame which is a race to the finish, but due to how I scripted the game it can pick only one winner; the last one standing alive, so I tried multiple ways to make a script that once inserted in a part, will kill all other players except the one which touched it. Can anyone give me a hand? Thanks in advance!
1 | game.Workspace.Part.KillEverybodyWhoDidntTouchItAfterTheFirstGuyTouchesIt() |
like vulkarin said find name of the person that touches it (winner or exploiter) with something like
1 | game.Workspace.WinPart.Touched:connect( function (hit) |
2 | local Winner = hit.Parent.Name -- if not hit.parent then just hit |
then go through the playerlist with for loop (im not to good in for loops just yet cut me some slack)
1 | Players = game:GetService( "Players" ) |
2 | for i, player in pairs (Players:GetPlayers()) do |
3 | if player.Name = not Winner then |
4 | player.Character.Humanoid.Health = 0 --or breakjoints |
5 | end |
1 | script.Parent.Touched:connect( function (hit) |
2 | hit.parent.Head:Destroy() |
3 | end ) |
Hope this helped :D