everything is setup but it doesnt move anything and it bounces my character/whatever is on it
here is the tutorial i followed and my script
local Conveyor = {}
Conveyor.__index = Conveyor
function Conveyor.new(tycoon, instance)
local self = setmetatable({}, Conveyor)
self.Instance = instance
self.Speed = instance:GetAttribute("Speed")
return self
end
function Conveyor:Init()
local belt = self.Instance.Belt
belt.AssemblyLinearVelocity = belt.CFrame.LookVector * self.Speed
end
return Conveyor