About 5,920 results
Open links in new tab
  1. Universal flying script - Community Resources - Roblox

    Oct 18, 2024 · I recently found a universal (any device) flying system and edited it a little from the original source. Place this script in StarterGui or StarterCharacterScripts and launch the game. After loading the character, he will immediately start flying! I recommend setting up the script, adding hotkeys and commands for activation via chat, you can change the fly speed! local Plr = game.Players ...

  2. How To Make A Character Fly - Scripting Support - Roblox

    Aug 20, 2018 · I would like to give characters the ability to fly in the air. How would I go about doing this? I would like the character to be able to fly by hitting the jump button for example. I will need to override the default “falling” animation. When the character lands on the ground, they should be able to resume walking. Thanks for any suggestions.

  3. How to make a player fly - Scripting Support - Developer Forum

    Oct 11, 2020 · if Humanoid:GetState() ~= Enum.HumanoidStateType.Flying then Humanoid:SetStateEnabled(Enum.HumanoidStateType.Flying, true) elseif Humanoid:GetState() == Enum.HumanoidStateType.Flying then Humanoid:SetStateEnabled(Enum.HumanoidStateType.Freefall, true) end but it really doesn’t even fly me into the sky im just still stuck on the ground. Client:

  4. How do i make a flying script? - Scripting Support - Roblox

    Sep 11, 2023 · So im trying to make a flying system for my game, but i have absolutley no idea how. So what im trying to achieve is when you hold p you will fly upwards. Here is my attempt so far. local p = game.Players.LocalPlayer local bo = game:GetService(“UserInputService”) local hrp = p.Character:WaitForChild(“HumanoidRootPart”) local t = function() game.Players:WaitForChild(“Humanoid ...

  5. I need help with flying script - Scripting Support - Roblox

    Apr 19, 2021 · Okay, so I made a flying script using Zairky’s Script and so I wanted to make a function so that if I didn’t press the key “w” I would stop flying but would still be in the air. So I made the script but every time I try to fly nothing worked. Script: local uis = game:GetService(“UserInputService”) local rs = game:GetService(“RunService”) local myPlayer = game.Players ...

  6. How to make Fly Command? - Scripting Support - Developer …

    May 24, 2021 · I want to make a fly command. I do not know how to code it. I looked at youtube.com and I found nothing on devforum.roblox.com that could help me. I am trying to make a fly command but I do not know how to code it in the script if you would tell me please try and explain it in as much detail as you can please. 😄 I really hope I can make it to finish my admin commands. commands.fly ...

  7. Need help making a flight script - Scripting Support - Roblox

    Jun 2, 2020 · The problem is here. local player = game.Players.LocalPlayer --Refer the player local mouse = player:GetMouse() --Lets get the players mouse so we can get the flying direction local character = player.Character or player.CharacterAdded:Wait() --Lets wait for the character to be added(You didnt change ple and plr to player as we defined :/ local BV = Instance.new("BodyVelocity",character ...

  8. Does anyone know how to make a animation to a flying script

    Jun 12, 2020 · I’m trying to create a game about being in space to make the ability to move around I’m using a fly script as a base but, there is no way I know of to give the flying ability an animation. I’ve tried using an animation handler but, they don’t have a spot for flying.

  9. Fly System - Movements - Scripting Support - Developer Forum

    Jan 20, 2024 · Hi, I would like to create a way to fly but I would like to know how I can do this kind of movement: W+A, W+D, Space+D, etc. Server : rs.FlyMovement.OnServerEvent:Connect(function(plr, keys) local char = plr.Characte…

  10. Creating Realistic Plane Physics - Community Tutorials - Roblox

    Creating realistic combat flight physics might seem challenging at first, but it’s defined by simple and abstract principles that are easier to implement than you might expect. After a few hundred hours of work, I created a flight physics model that takes ~1% of processing power each frame (assuming 60 fps). In this guide, I’ll walk you through the main ideas behind flight physics and give ...