About 20,500 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 …

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

    Aug 20, 2018 · Next up, you’ll need a function for flying that is called whenever your user presses the space bar. We’ll call this function “Fly” function fly() end This is going to be the bulk of your code, and I’ll write a fairly quick example of how you could write the flying “physics”. First things first, you need a few variables set up.

  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 …

  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() …

  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 …

  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 …

  7. How does one make the player fly? - Scripting Support - Roblox

    Sep 20, 2022 · Here’s the fly script from BaseAdmin: FlyScript.rbxm (5.2 KB) This “FlyScript” was originally from Adonis, but it was quite outdated, so I applied some tweaks to it to add mobile support and to replace the usage of BodyGyro and BodyPosition (which are now deprecated) with AlignOrientation and AlignPosition.

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

    Jun 2, 2020 · Hello there, I am a beginner scripter, and are currently making a game. Basically, my issue is, I want to make a flight script (Not a :fly command script). I have absolutely no idea what I’m doing for this, so if anyone could help me with it, that would be great! I’m looking to have it be sort of like an elytra from Minecraft if you understand, but I want it so you can propel off …

  9. How would I make a fly script that follows where I'm looking

    Aug 9, 2021 · use bodyvelocity for the flight movement. use bodygyro and constantly set the bodygyro’s CFrame to where the camera’s pointing. play around with the max force to make it as smooth as you want when it turns. make sure you set …

  10. How to make /Fly and /Unfly Command? - Scripting Support

    Oct 27, 2022 · Hello so I want to make a admin type of gamepass so in there. I want 2 commands like /fly and /unfly, and I want people to buy gamepass to use that command. so I tried few ways but it didn’t work.

Refresh