print("Simple Debugging Script Start!") local v = { 1, 'test', { 2, 3.3333 }} local z = _G local x = 0 function CallDepthTest() x = x + 1 if x <= 10 then print(x) CallDepthTest() end end -- Watch int the locals window, the local v[1] should -- turn red after this line because it was modified. v[1] = "The values has changed!" print(v, z) CallDepthTest() -- What the output window, it should get updated live -- ass for i = 1, 150 do print(i) end print("*** End Of Script ***")