1MinuteRoblox

MOVING CONVEYOR Script by 1MinuteRobloxTutorials

Jan 15th, 2024 (edited)
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. local ConveyerSpeed = 5 -- Change this to however fast you want your conveyor to move
  2.  
  3. while true do
  4. script.Parent.Velocity = script.Parent.CFrame.lookVector * ConveyerSpeed
  5. wait(0.1)
  6. end
  7.  
  8. --Created by 1MinuteRobloxTutorials--
  9.  
Advertisement
Add Comment
Please, Sign In to add comment