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

Velocity problem, objects not moving. Help?

Asked by 6 years ago

Hello, I am Markol3, I am new to scripting, and I have problem with Velocity, when I make part that has velocity, and put part that is unanchored on top of it, it doesn't move for some reason.

game.Workspace.Part.Velocity = Vector3.new(0,26,0)

0
you need a BodyVelocity inside the part under local part = game.Workspace.Part local bv = Instance.new("BodyVelocity") bv.Parent = part bv.Velocity = Vector3.new(0,26,0) something like that TheGreatSailor 20 — 6y

Answer this question