#I'm watching brawldevs tutorial on scripting and i'm on the final episode and i've done everything

8 messages · Page 1 of 1 (latest)

white spruce
#

local timer = duration.Value is wrong, you need to specify only "duration", not the value, so:

local timer = duration

then, in the while loop, you replace timer with timer.Value so:

while timer.Value > 0 do
  print(timer.Value)
  task.wait(1)
  timer.Value -= 1
end
white spruce
grim crow
#

would you mind showing your output?

white spruce
#

I didn't do it in studio

#

if u wait 1h or smth i guess i can do it

grim crow
#

Nono, not you, the one who made the post

#

Aside from what you said I don't see any issues, but it's still really easy to check output if something doesn't work

white spruce