Advertisement
anphu04

BOOGA BOOGA SPEED CONVEYORS

Mar 21st, 2018
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. -- Old version: 3/21/2018
  2. -- New version: 4/30/2018
  3.  
  4. torso = game.Players.LocalPlayer.Character.HumanoidRootPart
  5. angle = 0
  6. for i = 1,8 do
  7. local p = Instance.new("Part")
  8. p.Size = Vector3.new(10,1,2000)
  9. p.Anchored = true
  10. p.CFrame = torso.CFrame * CFrame.Angles(0, math.rad(angle),0) * CFrame.new(0,0,-1010)
  11. p.Parent = workspace
  12. p.Velocity = p.CFrame.lookVector * 500
  13. angle = angle + 45
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement