of     1   

AlacrityS
#183631835Monday, February 15, 2016 1:24 AM GMT

i have a regular script in the players startergui and its doing everything properly but its having trouble interacting with the gui's so like everything functions and the ball is teleported when it should and all that but it doesnt change the guis at all.. but it works perfectly in stuido no errors script: while true do wait(1) if game.Workspace:WaitForChild("Game").Value == 1 then game.Workspace:FindFirstChild("Game").Value = 0 repeat wait() until game.Players.NumPlayers >1 print"Enough Players" local sb = script.Parent:WaitForChild("Scoreboard") local p = 10 -- length of practice local c = 3 -- countdown before period starts local l = 480 -- how long each period is repeat sb.Period.Text = "Practice ends in: " .. (p) .." Seconds" p = p-1 wait(1) until p == 0 sb.Period.Text = "Practice has ended" wait(3) local cd = script.Parent:WaitForChild("Per CD").CD cd.Text = "Game Starts In" cd.Visible = true wait(1) repeat cd.Text = (c) c = c-1 wait(1) until c == 0 local ball = game.Lighting:WaitForChild("Basketball"):Clone() ball.Parent = game.Workspace ball.Handle.Position = Vector3.new(0.14, 30.23, 0.193) cd.Text = "BEGIN" wait(2) cd.Visible = false sb.Period.Text = "Period: 1" repeat sb.Time.Text = (l) l = l-1 wait(1) until l == 0 end end
AlacrityS
#183631923Monday, February 15, 2016 1:25 AM GMT

and sometimes it works for one player but not for the other player
AlacrityS
#183631965Monday, February 15, 2016 1:26 AM GMT

update: it only works for the first player to join
AlacrityS
#183633374Monday, February 15, 2016 1:43 AM GMT

wefwfwfwfw
AlacrityS
#183633813Monday, February 15, 2016 1:50 AM GMT

mmmmm
AlacrityS
#183636569Monday, February 15, 2016 2:26 AM GMT

ugh
SwagCuzYolo
#183637220Monday, February 15, 2016 2:34 AM GMT

viagra helps with small problems
AlacrityS
#183637280Monday, February 15, 2016 2:35 AM GMT

ok
AlacrityS
#183638536Monday, February 15, 2016 2:51 AM GMT

ugh
AlacrityS
#183638879Monday, February 15, 2016 2:55 AM GMT

qq
AlacrityS
#183653730Monday, February 15, 2016 6:48 AM GMT

still no fix
AlacrityS
#183678413Monday, February 15, 2016 5:13 PM GMT

ergegege
JarodOfOrbiter
#183678565Monday, February 15, 2016 5:15 PM GMT

You shouldn't use GUIs with Scripts. Use LocalScripts or something.
AlacrityS
#183696878Monday, February 15, 2016 8:48 PM GMT

i tried local script and still only worked for 1 person idk what to do.

    of     1