RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"fly script"
local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.KeyDown:Connect(function(key) if key == "e" then player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Flying") end end) mouse.KeyUp:Connect(function(key) if key == "e" then player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Seated") end end)