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

Is there a way to slow down a block when using a script to move it?

Asked by 4 years ago

I have made a saw which goes to one point then comes back. But for some reason it is really fast.

Here is the script:

BdyP = game.Workspace.Saw.Blade.BodyPosition

start = game.Workspace.Saw.Start
finish = game.Workspace.Saw.Finish


while true do
   BdyP.Position = start.Position
   wait(2)
   BdyP.Position = finish.Position
   wait(2)
end

Any info will help! Thanks

1 answer

Log in to vote
0
Answered by 4 years ago

well since your using body movers,you'd have to change up their "force" properties such as Dampening, MaxForce, etc relative to the mass of your block

learn more about body positions here

Ad

Answer this question