Could somebody tell me what to write to make a brick move when ordered? I'm a newbie at scripting...
1 | for i = 1 , 10 do |
2 | Workspace.Part.Position = Workspace.Part.Position + Vector 3. new(i, 0 , 0 ) |
3 | wait( 0.5 ) |
4 | end |
This will move it 10 studs on the x axis.
Correction:
1 | for i = 1 , 20 do |
2 | script.Parent.Position = vector 3. new(i, 0 , 0 ) |
3 | wait( 0.5 ) |
4 | end |
This is an easier way, paste it into the brick. Or you can do this to have it run by it not being in the script.
1 | for i, 20 do |
2 | game.Workspace.BRICKNAME.Position = vector 3. new(i, 0 , 0 ) |
3 | wait( 0.5 ) |
4 | end |