Did you want to generate a new list with only the items from 8 onwards?
Or did you want to do something to items 8+ onwards one by one?
Here's the first solution ...
set global EightOnwards to create empty list
for each n from 8 to length of list(MyInputList)
add item (select item n from list MyInputList) to list global EightOnwards
ABG