Advertisement
TheUnknownDiscord

Untitled

Sep 28th, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. part = Instance.new("VehicleSeat", script)
  2. part.CFrame = owner.Character.Head.CFrame * CFrame.new(0,7.5,-10)
  3. part.Size = Vector3.new(5,1,5)
  4. local density = 0.5
  5. local friction = 0.1
  6. local elasticity = 0
  7. local frictionWeight = 100000000000
  8. local elasticityWeight = 0
  9. local physProperties = PhysicalProperties.new(density, friction, elasticity, frictionWeight, elasticityWeight)
  10. part.CustomPhysicalProperties = physProperties
  11. owner.Character.Humanoid.AutoJumpEnabled = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement