I want to have a billboard that cycles decals. I've tried a few different things but can't seem to do it.
Could anyone give me a code block or something that would help me with this?
Appreciated!
tables would be useful.
Here's an example:
1 | local decals = { "decal_id1" , "decal_id2" , "decal_id3" } ; |
2 | for i,v in next ,decals do |
3 | print (v) |
4 | end |