I'm making an obby and when I make conveyors I would like to put an arrow texture/decal on it which moves in the direction of the conveyor, similar to "THE IMPOSSIBLE OBBY". Would I need to script that or do it manually, and whichever way I need to use, can I get a walkthrough on how to do so. I'm comparatively new to Studio, so sorry if it has a very simple explanation.
Hello,
In your case, you would want to use an Array Table in order to animate your texture/decal. Something you do require is to have different decals that make up the animation. To use an array table you can simply put a loop on the textures/decals so they will animate without putting too much pressure on the server.
Here is how you would use an Array Table for the animation:
01 | local Conveyor = workspace.Conveyor -- Change this to the path of your conveyor |
02 | local ConveyorContent = Conveyor.AnimatedDecal -- Change AnimatedDecal to the decal / texture name you would like to animate |
03 |
04 | local TextureAssetIDS = { |
05 | 000000000 , -- Change the 000000000 with the decal / texture id, if you want more make sure to add a comma next to the last current number and once you get to the final number make sure it has no comma. |
06 | 000000000 |
07 | } |
08 |
09 | local function AnimatedFrames(Frames) |
10 | for _,frame in pairs (Frames) do |
11 | ConveyorContent.Texture = "rbxassetid://" ..frame |
12 | wait(. 1 ) |
13 | end |
14 | end |
15 |
16 | while true do AnimatedFrames(TextureAssetIDS) end |
I hope this has helped you!