01 | part = script.parent.parent.Part |
02 |
03 | script.Parent.Touched:connect( function () |
04 |
05 | part.position = Vector 3. new( 25.55 , 1.6 , - 57.6 ) |
06 | wait(. 05 ) |
07 | part.position = Vector 3. new( 25.55 , 1.8 , - 57.6 ) |
08 | wait(. 05 ) |
09 | part.position = Vector 3. new( 25.55 , 2.0 , - 57.6 ) |
10 | wait(. 05 ) |
11 |
12 | end ) |
Whenever you hit the part with the script in it, it is supposed to move. That's not working;. Nothing happens when it is touched.
Remember, Lua is case sensitive. This means that upper and lower cases must be correct.
01 | part = script.Parent.Parent.Part --.Parent is capital |
02 |
03 | script.Parent.Touched:connect( function () |
04 |
05 | part.Position = Vector 3. new( 25.55 , 1.6 , - 57.6 ) --Position is capital. |
06 | wait(. 05 ) |
07 | part.Position = Vector 3. new( 25.55 , 1.8 , - 57.6 ) |
08 | wait(. 05 ) |
09 | part.Position = Vector 3. new( 25.55 , 2.0 , - 57.6 ) |
10 | wait(. 05 ) |
11 |
12 | end ) |
However, i would also recommend using a for loop and adding 0.2 to the brick's Position every time.
1 | part = script.Parent.Parent.Part --.Parent is capital |
2 |
3 | script.Parent.Touched:connect( function () |
4 | for i = 1 , 3 do |
5 | part.Position = part.Position + Vector 3. new( 0 , 0.2 , 0 ) |
6 | end |
7 | end ) |