so am trying to create a sanbox tycoon game and the first item i made is a conveyor, but for some reason the conveyor always moves into the same direction, no matter how i rotate it. here is the script
script.Parent.Velocity = script.Parent.CFrame.LookVector*script.Parent.Speed.Value
script.Parent.Speed.Changed:Connect(function()
script.Parent.Velocity = script.Parent.CFrame.LookVector*script.Parent.Speed.Value
end)