enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Universal flying script - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/universal-flying-script/3218881

    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.LocalPlayer. local Camera = game.Workspace.CurrentCamera.

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

    devforum.roblox.com/t/how-to-make-a-character-fly/169309

    I have remixed your fly script, so you change your fly status easier. Here’s my project if somebody is interested: flyRemixedJm.rbxl (28.6 KB) Edit: The [fly] key is now set to R by default since F doesn’t always work. You can change the [fly] key to your desired key by modifying the variable located at the beginning of the script.

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

    devforum.roblox.com/t/how-do-i-make-a-flying-script/2590050

    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. How to make a player fly - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-make-a-player-fly/815761

    Server: If i make this server-sided then it will never fly my character because when i make it fly on the server i use this piece of code. if Humanoid:GetState() ~= Enum.HumanoidStateType.Flying then. Humanoid:SetStateEnabled(Enum.HumanoidStateType.Flying, true) elseif Humanoid:GetState() == Enum.HumanoidStateType.Flying then.

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

    devforum.roblox.com/t/how-to-make-fly-and-unfly-command/2034998

    Hey, I finished making a fly script. Here is the script, local UIS = game:GetService('UserInputService') local Player = game:GetService('Players').LocalPlayer local Camera = workspace.CurrentCamera local Flying = false function toggleFly() Flying = not Flying if Flying then local char = Player.Character local rootPart:BasePart = char:WaitForChild('HumanoidRootPart') local hum:Humanoid = char ...

  7. Fly Admin Command - Scripting Support - Developer Forum - Roblox

    devforum.roblox.com/t/fly-admin-command/658450

    Fly Admin Command - Scripting Support - Developer Forum | Roblox. scripting, admincommands. Jermartynojm (Jermartynojm) July 5, 2020, 3:48pm #1. Hi! I made a simple Script that is located in ServerScriptService. It looks similar to this: local Players = game:GetService("Players") local Prefix = ";" local Group = 0 --Id of my group here.

  8. How to make Fly Command? - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-make-fly-command/1248383

    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 ...

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

    devforum.roblox.com/t/fly-system-movements/2800904

    Help and Feedback Scripting Support. ptitloup132 (Program) January 20, 2024, 12:38pm #1. 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.Character.

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

    devforum.roblox.com/t/how-does-one-make-the-player-fly/1991131

    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. I suggest looking at the code ...

  11. How to make a fly script - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-make-a-fly-script/2557541

    Hello! I am currently trying to make a custom admin panel for one of my games, in which I would like a fly command. For example, you type “;fly” into the chat, and you are lifted off the ground and into the air. I’ve tried a few ways of doing this, but none of them worked. Here is my code: --Variables local Player = game.Players.LocalPlayer local Character = Player.Character or Player ...