RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"fly script"
-- local script local player = game.Players.LocalPlayer local mouse = player:GetMouse() local flying = false function fly() if flying then player.Character.Humanoid.PlatformStand = false flying = false else player.Character.Humanoid.PlatformStand = true flying = true end end mouse.KeyDown:Connect(fly)