I want to make it so it will kill all the players and set their WalkSpeed to 0 until the round begins. It wont work though.
01 | function respawn(health,walkspeed) |
02 | Wait( 14 ) |
03 | health = game.Players.Children.Humanoid.Health |
04 | game.Players.Children.Humanoid.Health = 100 |
05 | walkspeed = game.Players.Children.Humanoid.WalkSpeed |
06 | Wait( 10 ) |
07 | game.Players.Children.Humanoid.WalkSpeed = 16 |
08 | end |
09 |
10 |
11 | respawn( 0 , 0 ) |
Thanks
1 | for i,v in pairs (game.Players:GetPlayers()) do |
2 | v.Character.Humanoid.Health = 0 |
3 | end |
This loops through all the players and sets their health to 0. You use the same method to change the WalkSpeed.