Reproduction Steps
- Set a breakpoint at the first line and debug this code until line 6 (
print(f)
):
local f = 0
local Pos = workspace.Baseplate.Position
repeat
f += 1
if f == 1 then
print(f)
else
f = 0
end
until f == 0
- Press F10 to go to the next logic line:
Expected Behavior
After line 6, debug indicator should go to line 10 ( until
)
Actual Behavior
After line 6, debug indicator pointing to line 8 ( f = 0
)
Issue Area: Studio
Issue Type: Other
Impact: Moderate
Frequency: Constantly