How do I get a Table value by it's index?

So I have a table called “Stopped”, and I want to get it’s value from it’s index. I’ve tried doing print(table.find(Stopped,1)) but it just printed “nil”.

1 Like

local value = table[index]

2 Likes