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.
function respawn(health,walkspeed) Wait(14) health=game.Players.Children.Humanoid.Health game.Players.Children.Humanoid.Health=100 walkspeed = game.Players.Children.Humanoid.WalkSpeed Wait(10) game.Players.Children.Humanoid.WalkSpeed=16 end respawn(0,0)
Thanks
for i,v in pairs(game.Players:GetPlayers()) do v.Character.Humanoid.Health = 0 end
This loops through all the players and sets their health to 0. You use the same method to change the WalkSpeed.