RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Flying script"
-- local script local player = game.Players.LocalPlayer local mouse = player:GetMouse() local flying = false mouse.KeyDown:Connect(function(key) if key == "e" then flying = not flying end end) game:GetService("RunService").RenderStepped:Connect(function() if flying then player.Character.Humanoid:ChangeState(11) end end)