Skip to content

llListFindStrided

function ll.ListFindStrided(ListVariable: {any}, Find: {any}, Start: number, End: number, Stride: number): number

Returns the index of the first instance of Find in ListVariable. Returns -1 if not found.

Returns the position of the first instance of the Find list in the ListVariable after the start index and before the end index. Steps through ListVariable by stride. Returns -1 if not found.

Parameters
ListVariable ({any})
Find ({any})
Start (number)
End (number)
Stride (number)

Add example usage here showing SLua/Luau syntax with ll.ListFindStrided().

Add additional notes, caveats, or tips specific to using this function in SLua/Luau.