Im making this game in which you're on a shrinking baseplate, and you're trying to knock everyone off of it, and be the last one standing.
In this game I have 2 teams, and the one I'm focusing on is called "Player"
So, when one person is left on the team, how do I award them the win?
1 | game.Teams.Players (Not even sure if Im doing this right) |
1 | game.Teams.Players.PlayerRemoved:Connect( function (plr) |
2 | local playerCount = #game.Teams.Players:GetPlayers() |
3 | if playerCount = = 1 then |
4 | local winner = game.Teams.Players:GetPlayers() |
5 | for i, v in pairs (winner) do |
6 | v.leaderstats.win.Value = v.leaderstats.win.Value + 1 |
7 | end |
8 | end |
9 | end ) |
Might be a bit scrappy! Hope this helps!