- Roblox Velocity Flight Simulator Controls Pc
- Roblox Velocity Flight Simulator Controls Free
- 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!
Roblox Velocity Flight Simulator Controls Free
- Mouse = Player:GetMouse()
- ReplicatedStorage = game:GetService('ReplicatedStorage')
- RemoteEvent = ReplicatedStorage:WaitForChild('Flying')
- RemoteEvent2 = ReplicatedStorage:WaitForChild('FlyingOff')
- game:GetService('UserInputService').InputBegan:Connect(function(input)
- if input.KeyCode Enum.KeyCode.F and Debounce 1then-- if Player press F and Debounce = 1
- RemoteEvent:FireServer()-- Fire remote
- for i =1,math.huge do-- Loop for Player's humanoid root part follows mouse
- if Debounce 2then-- if debounce = 2 then follow mouse
- Player.Character.HumanoidRootPart.CFrame = CFrame.new(Player.Character.HumanoidRootPart.Position,Mouse.Hit.p)
- break
- end
- end)
- game:GetService('UserInputService').InputEnded:Connect(function(input)
- if input.KeyCode Enum.KeyCode.F and Debounce 2then-- if Player release F and Debounce 2
- script.Disabled =true-- script disabled (Debounce = 1)
- RemoteEvent2:FireServer()-- fire second remote
- script.Disabled =false-- script enabled
- end)
- (Remote event script)
- ReplicatedStorage = game:GetService('ReplicatedStorage')
- RemoteEvent = ReplicatedStorage:WaitForChild('Flying')
- RemoteEvent2 = ReplicatedStorage:WaitForChild('FlyingOff')
- RemoteEvent.OnServerEvent:Connect(function(Player)
- Vel = Instance.new('BodyVelocity', Player.Character.HumanoidRootPart)-- Create new velicoty inside humanoid root part
- Vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
- if Player.Character.HumanoidRootPart:FindFirstChild('FlyVelocity')~=nilthen-- if velocity exists
- Vel.Velocity = Player.Character.HumanoidRootPart.CFrame.lookVector*100
- break
- end
- end
- end)
- RemoteEvent2.OnServerEvent:Connect(function(Player)
- end)