My minigames script's hint doesent show text can somebody please help me?
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:
01 | minigames = game.ServerStorage.Minigames:GetChildren() |
02 | numberOfPlayers = game.Workspace.currentPlayers |
03 | h = Instance.new( "Hint" , game.Workspace) |
04 | roundFinished = script.roundFinished |
08 | if numberOfPlayers.Value > = 2 then |
09 | minigameSelection = math.random( 1 ,#minigames) |
10 | gameChosen = minigames [ minigameSelection ] |
11 | h.Text = "Deciding what game to play" |
13 | h.Text = "Game chosen: " .. gameChosen.Name |
15 | gameChosenClone = gameChosen:Clone() |
16 | gameChosenClone.Parent = game.Workspace |
19 | spawns = gameChosenClone.Spawns:GetChildren() |
20 | for i,v in pairs (game.Players:GetPlayers()) do |
22 | check = game.Workspace:FindFirstChild(name) |
24 | checkHumanoid = check:FindFirstChild( "Humanoid" ) |
26 | v.Character:MoveTo(spawns [ i ] .Position) |
31 | h.Text = "Game begins in: " .. i |
35 | if gameChosenClone.Name = = "DissapearingPlates" then |
38 | for i = timeTillGameEnds, 1 , - 1 do |
39 | h.Text = "Time left: " .. i |
42 | if gameChosenClone.Name = = "Sweeper" then |
45 | for i = timeTillGameEnds, 1 , - 1 do |
46 | h.Text = "Time left: " .. i |
49 | h.Text = "Game Ended!" |
51 | h.Text = "Giving points to winners!" |
52 | for i, v in pairs (game.Players:GetPlayers()) do |
53 | inGame = v:FindFirstChild( "inGame" ) |
55 | if inGame.Value = = true then |
56 | v.leaderstats.Points.Value = v.leaderstats.Points.Value + 10 |
61 | gameChosenClone:Destroy() |
64 | h.Text = "There needs to be more than 1 player to start" |