start=getTickCount()
addEventHandler("onClientRender", root,
function()
local now = getTickCount()
local endTime = start + 6000
local elapsedTime = now - start
local duration = endTime - start
local progress = elapsedTime / duration
local x, y, _ = interpolateBetween (
0.02, -0.04, 0,
0.02, 0.54, 0,
progress, "Linear")
local x1, y1, _ = interpolateBetween (
0.02, 0.99, 0,
0.02, 0.67, 0,
progress, "Linear")
GUIEditor.edit[1] = guiCreateEdit(x, y, 0.22, 0.04, "", true)
GUIEditor.edit[2] = guiCreateEdit(x1, y1, 0.22, 0.04, "", true)
guiEditSetMasked(GUIEditor.edit[2], true)
end)