# Example hint syntax (do not copy-paste blindly, understand it!) using { /Verse.org/Simulation } # Inside your OnBegin() function, replace the single Enable() call with: var Count : int = 0 loop: if (Count >= 10): # Stop after 10 blinks break MyLight.Enable() Sleep(0.5) # Wait half a second; Sleep() is the real Verse pause function MyLight.Disable() Sleep(0.5) set Count += 1