Buradasın
Winner Script Issues and Solutions
devforum.roblox.com/t/winner-script-system-only-works-with-one-player-in-the-server/445090Yapay zekadan makale özeti
- Problem Description
- Script only works with one player in the server
- Script attempts to announce winner at round end
- Multiple players in server trigger same result
 
- Code Issues
- Script uses 1350 functions connected to player deaths
- Wait(0) is unnecessary, wait(1350) works fine
- Player deaths are never properly disconnected
- Players leaving game aren't removed from round_players array
 
- Solutions
- Remove repeat loop and use wait(number)
- Move for loop outside main loop
- Remove unnecessary wait(0)
- Update all TextLabel updates after round_players loop