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

Why doesnt this work? Gamescript not working at all.

Asked by 9 years ago

My game script doesnt work at all. It looks like everything should be all good but when i test it it doesnt even do anything.

001-- Made by Bennymax3333
002 
003local timeleft = workspace:findFirstChild('timeleft')
004local currentMap = workspace:findFirstChild('currentMap')
005local _Teams = game:GetService'Teams'
006local _Players = game:GetService'Players'
007 
008 
009function countDown()
010    spawn(function()
011        for i = 120, 0, -1 do
012            wait(1)
013            timeleft.Value = i
014        end
015    end)
View all 168 lines...

Did i spell something wronge ore what!? I thought it looked perfect but for some reaason it doesnt work at all! PLEASE HELP ME I DONT KNOW WHAT TO DO?!

2 answers

Log in to vote
2
Answered by 9 years ago

Try to use WaitForChilds to make sure that everything is where it should be at the right time. Check the developer console for any outputs, try debugging by using print statements to find out how far your code has got before getting stuck.

Ad
Log in to vote
0
Answered by
Proflts 15
9 years ago

Capitalize Workspace on line one and line 2. thats all i got.

Answer this question