The script involves playerGui and a Round system. What type of line can make the script run for everyone at once.
Use a for loop to iterate through the players in-game.
for index, player in pairs(Game.Players:GetPlayers()) do coroutine.resume(coroutine.create(function() player.Character:BreakJoints() --Replace this with any code that you want to run for the player. end)) end