Controls For Velocity Flight Simulator Roblox

Feb 12th, 2019
Never
Controls for velocity flight simulator roblox free

Controls are the interface between the user and the movement of the player on a video game, such as Roblox. The in-game controls can apply to many methods of movement, including walking and driving. To move the player's character, the player should press the WASD keys to start walking about or use the arrow keys, although the left and right arrow keys move the camera left or right.

Acceleration flight simulator robloxControls
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  • Now is your chance. Velocity Flight Training has a Boeing 737-800 Next Generation fixed-based simulator that utilises a seamless blend of real and replica aircraft parts, as well as a 180 degree wrap around visual system to provide an unparalleled, immersive flight experience.
  • This is my last velocity flight simulator video. Hope you enjoyed watching this series as much as I had making it. If you enjoyed this video, make sure to le.
  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)
Feb 12th, 2019

Roblox Plane Simulator

Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  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)