Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Medrotube's Fly Script
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local flySpeed = 100 -- تعديل سرعة الطيران هنا
- local function onKeyPress(input)
- if input.KeyCode == Enum.KeyCode.Space then
- local character = player.Character
- local humanoid = character:FindFirstChild("Humanoid")
- if humanoid then
- humanoid:Move(Vector3.new(0, flySpeed, 0))
- end
- end
- end
- mouse.KeyDown:Connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement