Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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:

01playerCount = game.Players.NumPlayers
02 
03if game.Players.NumPlayers >= 2 then
04script.Parent.Text = game.Players.NumPlayers.." Players"
05else
06script.Parent.Text = game.Players.NumPlayers.." Player"
07end
08 
09while true do
10if game.Players.NumPlayers >= 2 then
11script.Parent.Text = game.Players.NumPlayers.." Players"
12else
13script.Parent.Text = game.Players.NumPlayers.." Player"
14end
15end
0
There NickIsANuke 217 — 5y
0
Sorry, there are indents in the actual code, IDK why not here. NickIsANuke 217 — 5y
0
because you have an infinite loop without a wait() theking48989987 2147 — 5y
0
And NumPlayers isnt a valid property of the PlayersService theking48989987 2147 — 5y
View all comments (3 more)
0
Yes it is NickIsANuke 217 — 5y
0
add a wait EmbeddedHorror 299 — 5y
0
you need to put a wait() at the end of the while true do SamZeKat 28 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago

there has to be a wait inside of any while true loop. Not doing so results in the timeout or roblox crashing. While true runs the code 30 times per second if not specified otherwise.

01playerCount = game.Players.NumPlayers
02 
03if game.Players.NumPlayers >= 2 then
04script.Parent.Text = game.Players.NumPlayers.." Players"
05else
06script.Parent.Text = game.Players.NumPlayers.." Player"
07 
08end
09 
10while true do
11if game.Players.NumPlayers >= 2 then
12script.Parent.Text = game.Players.NumPlayers.." Players"
13 
14else
15script.Parent.Text = game.Players.NumPlayers.." Player"
16end
17 
18wait(0.1)
19end
0
also read comments, a lot of other people said the same thing. EmbeddedHorror 299 — 5y
Ad

Answer this question