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

How to change the Velocity property of a brick?

Asked by 8 years ago
script.Parent.Parent.Conveyor1.Velocity = Vector3.new(0, 0, -10)

Doesn't work.

1 answer

Log in to vote
1
Answered by
XAXA 1569 Moderation Voter
8 years ago

It seems like you're trying to make a conveyor belt. Anchor the part first before changing its Velocity so that it works as expected.

script.Parent.Parent.Conveyor1.Anchored = true
script.Parent.Parent.Conveyor1.Velocity = Vector3.new(0, 0, -10)
Ad

Answer this question