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

How do I make a wall that rushes?

Asked by 4 years ago

I want to make a wall like in Don't get crushed by a speeding wall. Does anybody know how?

1 answer

Log in to vote
0
Answered by 4 years ago

I recommend using something like the Tween Service or even adding a force to the object (like BodyGyros, BodyVelocitys, etc.)

Here is the Tween Service thing: https://developer.roblox.com/en-us/api-reference/class/Tween

0
Which force? malekcowboy 0 — 4y
0
Is this script correct? start = game.Workspace.MovingModel.Start finish = game.Workspace.MovingModel.Finish bodyposition = game.Workspace.MovingModel.Platform.BodyPosition while true do bodyposition.Position = start.Position wait(2) bodyposition.Position = finish.Position wait(2) end malekcowboy 0 — 4y
0
I recommend you use the TweenService, it is way easier. https://developer.roblox.com/en-us/api-reference/class/Tween BradNewTypical 232 — 4y
0
I love tweening, cant really explain it I just do iiConstable_Subwayx 130 — 4y
Ad

Answer this question