I need a script to help me do this! I'm trying to make a pathway of footsteps light up one step at a time. A script that could be used for each part would be great!
1 | while true do |
2 | wait( 0.1 ) --- your time here |
3 | workspace.YourPartsName.Material = ---Whatever material you wanna put here |
4 | wait( 0.5 ) --- again, your time here |
5 | workspace.YourPartsName.Material = |
6 | end |
or something along those lines
01 | -->Put this into the Part to work |
02 |
03 | local part = script.Parent |
04 |
05 | while true do |
06 | wait( 1 ) --> You decide your time of waiting |
07 | part.Material = Enum.Material.Plastic -->Change this to your own Material |
08 | wait( 1 ) --> Change this |
09 | part.Material = Enum.Material.Nenon -->Change this to your own Material |
10 | end |
11 |
12 | --> This is all you need |
Closed as Not Constructive by Leamir, firestarroblox123, and hiimgoodpack
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?