local roundTime = 60
local noteBookConnection = NoteBookAmount:GetPropertyChangedSignal("Value"):Connect(function()
roundTime += 50
end)
while roundTime > 0 do
roundTime -= 1
--Stuff
end)
noteBookConnection:Disconnect() -- Remember to disconnect your connections!
-- Round timer has finished, continue with program