Roblox Velocity Flight Simulator Controls

  1. Roblox Velocity Flight Simulator Controls Pc
  2. Roblox Velocity Flight Simulator Controls Free
  3. Roblox Velocity Flight Simulator Controls Youtube

Today I will show you top 5 best Roblox flight simulators. Hope you enjoy!1st: https://web.robl. Just look at the various simulator games that essentially just boil down to doing one task over and over to buy upgrades. I feel like these games have become the face of Roblox unfortunately. Despite this, there are a lot of hidden gems which have really fun gameplay that are pretty much unknown outside of the Roblox community. Flight Velocity produces flight deck panels, flight controls, and accessories for Microsoft Flight Simulator, X-Plane, Prepar3d, FSX, and others. Our panels boast patented designs that are built from the desk up for strength, durability, and high performance.

Feb 12th, 2019

Roblox Velocity Flight Simulator Controls Pc

Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
Velocity

Roblox Velocity Flight Simulator Controls Free

  1. Mouse = Player:GetMouse()
  2. ReplicatedStorage = game:GetService('ReplicatedStorage')
  3. RemoteEvent = ReplicatedStorage:WaitForChild('Flying')
  4. RemoteEvent2 = ReplicatedStorage:WaitForChild('FlyingOff')
  5. game:GetService('UserInputService').InputBegan:Connect(function(input)
  6. if input.KeyCode Enum.KeyCode.F and Debounce 1then-- if Player press F and Debounce = 1
  7. RemoteEvent:FireServer()-- Fire remote
  8. for i =1,math.huge do-- Loop for Player's humanoid root part follows mouse
  9. if Debounce 2then-- if debounce = 2 then follow mouse
  10. Player.Character.HumanoidRootPart.CFrame = CFrame.new(Player.Character.HumanoidRootPart.Position,Mouse.Hit.p)
  11. break
  12. end
  13. end)
  14. game:GetService('UserInputService').InputEnded:Connect(function(input)
  15. if input.KeyCode Enum.KeyCode.F and Debounce 2then-- if Player release F and Debounce 2
  16. script.Disabled =true-- script disabled (Debounce = 1)
  17. RemoteEvent2:FireServer()-- fire second remote
  18. script.Disabled =false-- script enabled
  19. end)
  20. (Remote event script)
  21. ReplicatedStorage = game:GetService('ReplicatedStorage')
  22. RemoteEvent = ReplicatedStorage:WaitForChild('Flying')
  23. RemoteEvent2 = ReplicatedStorage:WaitForChild('FlyingOff')
  24. RemoteEvent.OnServerEvent:Connect(function(Player)
  25. Vel = Instance.new('BodyVelocity', Player.Character.HumanoidRootPart)-- Create new velicoty inside humanoid root part
  26. Vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  27. if Player.Character.HumanoidRootPart:FindFirstChild('FlyVelocity')~=nilthen-- if velocity exists
  28. Vel.Velocity = Player.Character.HumanoidRootPart.CFrame.lookVector*100
  29. break
  30. end
  31. end
  32. end)
  33. RemoteEvent2.OnServerEvent:Connect(function(Player)
  34. end)

Roblox Velocity Flight Simulator Controls Youtube