Airplane Simulator 2019 Roblox

Jun 30th, 2016
Never

Microsoft Flight Simulator 2020 is probably the best way to do that now, but the game will run you $60, at least, plus the cost of additional planes. And that probably won’t change any time soon.

Airplane simulator 2019 roblox game

Flight Simulators 2019

Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. local Character = Player.CharacterAdded:wait()
  2. local Plane = workspace.Plane
  3. local Tool = script.Parent
  4. local equipped =false
  5. local BG = Plane.Engine.BodyGyro -- rotates the plane
  6. local BV = Plane.Engine.BodyVelocity -- pushes the plane
  7. local speed =50--The speed of the plane
  8. Tool.Equipped:connect(function()
  9. BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  10. repeat-- Continues to fly..
  11. BV.velocity = Plane.Engine.CFrame.lookVector*speed -- Pushes the plane to it's new rotation
  12. BG.CFrame = CFrame.new(Plane.Engine.Position, Mouse.hit.p)-- Rotates the plane on the axis of the position and points at mouse
  13. BV.MaxForce = Vector3.new(0,0,0)-- Basically to cut of the 'engine'
  14. end)
  15. Tool.Unequipped:connect(function()-- Anonymous function
  16. equipped =false-- So we can tell when to stop flying the plane
RAW Paste Data

Airplane Simulator 2019 Roblox Codes