i can do the keybind thing but I don’t know how to start a timer gui ;-;
2 Likes
You can use a repeat until statement for this. It would look something like this:
local t = 30
repeat t = t - 1 wait(1) until t == 0
2 Likes
you never included a wait anywhere
nvm you edited
1 Like
Yeah just noticed my bad lol.
Fixed that.