Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. local f = Instance.new("BodyForce", game.Workspace.Vehicles["Ferrari F40"].Chassis.FrontAxel.Tire1.Wheel)
  2. f.Force = Vector3.new(0,200000,0)
  3. wait(3)
  4. f:Destroy()
  5. wait(1)
  6. local g = Instance.new("BodyPosition", game.Workspace.Vehicles["Ferrari F40"].Chassis.FrontAxel.Tire1.Wheel)
  7. g.Position = Vector3.new(0, 500, 0)
  8. g.maxForce = Vector3.new(4000000, 4000000, 4000000)
  9. g.P = 200000
  10. local f2 = Instance.new("BodyForce", game.Workspace.Vehicles["Ferrari F40"].Chassis.FrontAxel.Tire1.Wheel)
  11. f2.Force = Vector3.new(0,0,200000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement