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
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