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

My minigames script's hint doesent show text can somebody please help me?

Asked by
kom297 -4
6 years ago

So I was working on my minigames script today and I ran it and the output said: "Game script timeout". So I added a wait and it works but for whatever reason, the hint's text doesn't appear

My code:

01minigames = game.ServerStorage.Minigames:GetChildren()
02numberOfPlayers = game.Workspace.currentPlayers
03h = Instance.new("Hint", game.Workspace)
04roundFinished = script.roundFinished
05 
06while true do
07    wait(1)
08    if numberOfPlayers.Value >= 2 then
09        minigameSelection = math.random(1,#minigames)
10        gameChosen = minigames[minigameSelection]
11        h.Text = "Deciding what game to play"
12        wait(3)
13        h.Text = "Game chosen: " .. gameChosen.Name
14        wait(3)
15        gameChosenClone = gameChosen:Clone()
View all 68 lines...
0
I didnt read the entire script, but change numberOfPlayers to #game.Players:GetPlayers() rokedev 71 — 6y
0
Like this? "if game.Players:GetPlayers() >= 2 then" kom297 -4 — 6y

Answer this question