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

Script isn't working in online mode?

Asked by 10 years ago

Everything works in Play Solo and the gui shows up fine, but when I tried it in online mode, nothing worked. Here's the code:

01--Made by Aceta
02 
03players = game.Players:GetPlayers()
04local timeleft = Workspace:findFirstChild('time')
05local piece = Workspace.teleportationpart
06local map = Workspace.Map
07current = {}
08 
09function removeTime()
10        for i = 120, 0, -1 do
11                wait(1)
12                timeleft.Value = i
13        end
14end
15 
View all 82 lines...
0
Are you getting any output? While it's ugly, I can't see any part of this script that could be problematic. adark 5487 — 10y
0
No output at all. RedneckBane 100 — 10y

1 answer

Log in to vote
1
Answered by
Defaultio 160
10 years ago

I think your problem is that you're only calling game.Players:GetPlayers() once, at the beginning of your script. This is fine in solo because you only have one player, and that player exists immediately on the start of the game, so he or she gets in that list. However, in a server, the server starts and code runs before any players get into the game, so your players list is empty and stays empty. It's running the code fine, for all 0 players it thinks are in the game. Just refresh that list through every iteration of the loop!

Ad

Answer this question