It looks like you're new here. If you want to get involved, click one of these buttons!
local headerRegion = vector(0, 0, 0, 0) Timer.delayedCall(10, function() headerRegion.x, headerRegion.y, headerRegion.z, headerRegion.w = 100, 200, 300, 400 print(headerRegion) end) |
Comments
Writing headerRegion=vector(100,200,300,400) works, because the whole upvalue is modified
Likes: rrraptor