RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Use the VectorForce constraint for maintaining velocity"
-- local script local part = script.Parent local velocity = Vector3.new(10, 0, 0) -- Change this to the desired velocity local vectorForce = Instance.new("VectorForce") vectorForce.Force = velocity vectorForce.RelativeTo = Enum.ActuatorRelativeTo.World vectorForce.Attachment0 = Instance.new("Attachment", part)