anphu04

Spawn a conveyor (speed hacking)

Mar 20th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. local p = Instance.new("Part")
  2. p.Name = "CONV"
  3. p.Size = Vector3.new(10,1,2000)
  4. p.Anchored = true
  5. p.BrickColor = BrickColor.Black()
  6. p.Material = "DiamondPlate"
  7. p.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0, -p.Size.Z/2)
  8. p.Velocity = p.CFrame.lookVector * 7000
  9. p.Parent = workspace
Add Comment
Please, Sign In to add comment