Wie mache ich eine Wartezeit, lin lua repit
function wait(seconds)
local start = os.time()
repeat until os.time() > start + seconds
end
abdelrahman hussein
function wait(seconds)
local start = os.time()
repeat until os.time() > start + seconds
end