Why does my script error “Game script timeout” when I run the game, and how do I fix it??
Asked by
5 years ago Edited 5 years ago
I made a local script to detect how many players are in the game, then put that on a text label. When I run it, it gives me “Game script timeout” on line 13. I do not understand. My script:
01 | playerCount = game.Players.NumPlayers |
03 | if game.Players.NumPlayers > = 2 then |
04 | script.Parent.Text = game.Players.NumPlayers.. " Players" |
06 | script.Parent.Text = game.Players.NumPlayers.. " Player" |
10 | if game.Players.NumPlayers > = 2 then |
11 | script.Parent.Text = game.Players.NumPlayers.. " Players" |
13 | script.Parent.Text = game.Players.NumPlayers.. " Player" |