Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-3

How to make a brick move with a script?

Asked by 11 years ago

Could somebody tell me what to write to make a brick move when ordered? I'm a newbie at scripting...

3 answers

Log in to vote
0
Answered by
Perci1 4988 Trusted Moderation Voter Community Moderator
11 years ago
1for i = 1,10 do
2Workspace.Part.Position = Workspace.Part.Position  + Vector3.new(i,0,0)
3wait(0.5)
4end

This will move it 10 studs on the x axis.

Ad
Log in to vote
0
Answered by
Reverge -1
11 years ago

Correction:

1for i = 1,20 do
2script.Parent.Position = vector3.new(i, 0, 0)
3wait(0.5)
4end

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.

1for i,20 do
2game.Workspace.BRICKNAME.Position = vector3.new(i, 0, 0)
3wait(0.5)
4end
Log in to vote
0
Answered by
istiyak 13
11 years ago

You should of checked the wiki

Answer this question