Advertisement
anphu04

LONGER BOOGA BOOGA CONVEYORS

Mar 21st, 2018
4,856
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. -- made by anphu04: 21/3/2018
  2. -- this depends on how goood your lua executer is, you might want to cut off some parts in order for this script to work (like 2 conveyors only)
  3. -- apparently, you can't find the player using variables :?
  4.  
  5. local speed = 200
  6.  
  7.  
  8.  
  9. local p = Instance.new("Part", game.Workspace)
  10. p.Name = "CONV"
  11. p.Anchored = true
  12. p.Size = Vector3.new(10,1,2000)
  13. p.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(0,0,1010))
  14. p.Velocity = Vector3.new(0,0,speed)
  15.  
  16. local p2 = Instance.new("Part", game.Workspace)
  17. p2.Name = "CONV"
  18. p2.Anchored = true
  19. p2.Size = Vector3.new(10,1,2000)
  20. p2.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(0,0,-1010))
  21. p2.Velocity = Vector3.new(0,0,-speed)
  22.  
  23.  
  24.  
  25.  
  26. local p3 = Instance.new("Part", game.Workspace)
  27. p3.Name = "CONV"
  28. p3.Anchored = true
  29. p3.Size = Vector3.new(2000,1,10)
  30. p3.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(1010,0,0))
  31. p3.Velocity = Vector3.new(speed,0,0)
  32.  
  33. local p4 = Instance.new("Part", game.Workspace)
  34. p4.Name = "CONV"
  35. p4.Anchored = true
  36. p4.Size = Vector3.new(2000,1,10)
  37. p4.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(-1010,0,0))
  38. p4.Velocity = Vector3.new(-speed,0,0)
  39.  
  40.  
  41.  
  42.  
  43. local p5 = Instance.new("Part", game.Workspace)
  44. p5.Name = "CONV"
  45. p5.Anchored = true
  46. p5.Size = Vector3.new(10,1,2000)
  47. p5.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(715,0,715)) * CFrame.Angles(0, math.rad(45), 0)
  48. p5.Velocity = Vector3.new(speed/1.5,0,speed/1.5)
  49.  
  50. local p6 = Instance.new("Part", game.Workspace)
  51. p6.Name = "CONV"
  52. p6.Anchored = true
  53. p6.Size = Vector3.new(10,1,2000)
  54. p6.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(-715,0,-715)) * CFrame.Angles(0, math.rad(45), 0)
  55. p6.Velocity = Vector3.new(-speed/1.5,0,-speed/1.5)
  56.  
  57.  
  58.  
  59.  
  60. local p7 = Instance.new("Part", game.Workspace)
  61. p7.Name = "CONV"
  62. p7.Anchored = true
  63. p7.Size = Vector3.new(10,1,2000)
  64. p7.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(-715,0,715)) * CFrame.Angles(0, math.rad(-45), 0)
  65. p7.Velocity = Vector3.new(-speed/1.5,0,speed/1.5)
  66.  
  67. local p8 = Instance.new("Part", game.Workspace)
  68. p8.Name = "CONV"
  69. p8.Anchored = true
  70. p8.Size = Vector3.new(10,1,2000)
  71. p8.CFrame = CFrame.new(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(Vector3.new(715,0,-715)) * CFrame.Angles(0, math.rad(-45), 0)
  72. p8.Velocity = Vector3.new(speed/1.5,0,-speed/1.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement