No errors, but i need to know how to fix this so after these two parts go up, after 5 seconds, it goes down to its original position.
01 | part = script.Parent.Part |
02 | part 2 = script.Parent.Part 2 |
03 | function move() |
04 | for i = 0.1 , 50 do |
05 | wait( 0.1 ) |
06 | b = 0.1 + 0.1 |
07 | part.Position = part.Position+Vector 3. new( 0 ,b, 0 ) |
08 | part 2. Position = part 2. Position+ Vector 3. new( 0 ,b, 0 ) |
09 | script.Parent.ClickDetector.MaxActivationDistance = 0 |
10 | end |
11 | wait( 5 ) |
12 | for i = 0.1 , 50 do |
13 | wait( 0.1 ) |
14 | b = 0.1 + 0.1 |
15 | part.Position = part.Position+Vector 3. new( 0 ,b, 0 ) |
You are still adding in the second part, you need to subtract:
01 | part = script.Parent.Part |
02 | part 2 = script.Parent.Part 2 |
03 | function move() |
04 | for i = 0.1 , 50 do |
05 | wait( 0.1 ) |
06 | b = 0.1 + 0.1 |
07 | part.Position = part.Position+Vector 3. new( 0 ,b, 0 ) |
08 | part 2. Position = part 2. Position+ Vector 3. new( 0 ,b, 0 ) |
09 | script.Parent.ClickDetector.MaxActivationDistance = 0 |
10 | end |
11 | wait( 5 ) |
12 | for i = 0.1 , 50 do |
13 | wait( 0.1 ) |
14 | b = 0.1 + 0.1 |
15 | part.Position = part.Position-Vector 3. new( 0 ,b, 0 ) |