of     1   

dembeIle
#171158372Friday, August 14, 2015 4:39 PM GMT

local NumPlayers = game.Players.NumPlayers local gamePlayers = script.Parent.gamePlayers ... gamePlayers.Value = NumPlayers The IntValue is not changing to the Number of Players. However, I have another script that changes the same IntValue but it changes it in that script!
LordDracius
#171158598Friday, August 14, 2015 4:41 PM GMT

The variable NumPlayers is getting the number of players at the current time. You should back up the Variable to Game.Players. then later do Players.NumPlayers local Players = game.Players local gamePlayers = script.Parent.gamePlayers gamePlayers.Value = Players.NumPlayers
laughablehaha
#171158627Friday, August 14, 2015 4:42 PM GMT

I believe you have to put a "." in between "game" and "Players." Instead of gamePlayers, do "game.Players". It should work
dembeIle
#171161274Friday, August 14, 2015 5:07 PM GMT

^ Lol.
dembeIle
#171161498Friday, August 14, 2015 5:10 PM GMT

Now I'm getting an error on line 13. line 13: if Players.NumPlayers >= Players then Output: 18:09:34.045 - Players.Player.PlayerGui.Main.HUD.main:13: attempt to compare userdata with number
instawin
#171161678Friday, August 14, 2015 5:12 PM GMT

first off, i would rename your Players variable as it could conflict with your Players variable that refers to the Players service. *if Players.NumPlayers >= yourPlayers.Value because you were trying to compare NumPlayers with the intvalue object itself, not its value
LordDracius
#171161761Friday, August 14, 2015 5:12 PM GMT

Players is a tracker value not a number. What are you trying to compare here?
dembeIle
#171162432Friday, August 14, 2015 5:19 PM GMT

I change that however nothing is happening still :l
instawin
#171162552Friday, August 14, 2015 5:20 PM GMT

you're trying to compare your player's int value itself to NumPlayers. simply put: *if Players.NumPlayers >= yourRequiredNumOfPlayersIntValue.Value
dembeIle
#171162795Friday, August 14, 2015 5:23 PM GMT

Sorry I must of misworded something. My IntValue is a value inside of the script's parent and it is supposed to be the number of players in the current round.
dembeIle
#171162975Friday, August 14, 2015 5:25 PM GMT

I've tried everything I can think of but nothing is working!
dembeIle
#171163439Friday, August 14, 2015 5:29 PM GMT

bump
dembeIle
#171163772Friday, August 14, 2015 5:33 PM GMT

bump1337
laughablehaha
#171164611Friday, August 14, 2015 5:41 PM GMT

Did you even try what I said?

    of     1