RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me fly if i press "e" and i can toggle on/off."
-- local script local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local flying = false local function toggleFly() flying = not flying humanoid:ChangeState(flying and Enum.HumanoidStateType.Flying or Enum.HumanoidStateType.Physics) end game:GetService("UserInputService").InputBegan:Connect(function(input, gameProcessed) if not gameProcessed and input.KeyCode == Enum.KeyCode.E then toggleFly() end end)