--// Variables local player = game.Players.LocalPlayer local mouse = player:GetMouse() local camera = workspace.CurrentCamera local flying = false local flySpeed = 50 --// GUI Creation local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local TitleBar = Instance.new("Frame") local TitleLabel = Instance.new("TextLabel") local Container = Instance.new("Frame") local ToggleBtn = Instance.new("TextButton") local SpeedBox = Instance.new("TextBox") local SpeedLabel = Instance.new("TextLabel") -- Parent ScreenGui.Name = "FLY2514_BIG" ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false -- Main Frame (Boyutlar büyütüldü: 160 -> 200) MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(0, 0, 0) MainFrame.Position = UDim2.new(0.5, -100, 0.4, 0) MainFrame.Size = UDim2.new(0, 200, 0, 180) -- Daha geniş ve uzun MainFrame.Active = true MainFrame.Draggable = true -- Title Bar TitleBar.Name = "TitleBar" TitleBar.Parent = MainFrame TitleBar.BackgroundColor3 = Color3.fromRGB(15, 15, 15) TitleBar.Size = UDim2.new(1, 0, 0, 35) -- Bar kalınlaştırıldı TitleLabel.Parent = TitleBar TitleLabel.Size = UDim2.new(1, 0, 1, 0) TitleLabel.Text = "FLY2514" TitleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TitleLabel.TextSize = 18 -- Yazı büyütüldü TitleLabel.Font = Enum.Font.SourceSansBold -- Controls Container Container.Name = "Container" Container.Parent = MainFrame Container.BackgroundTransparency = 1 Container.Position = UDim2.new(0, 0, 0, 40) Container.Size = UDim2.new(1, 0, 1, -40) -- Toggle Button ToggleBtn.Parent = Container ToggleBtn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) ToggleBtn.BorderSizePixel = 0 ToggleBtn.Position = UDim2.new(0.1, 0, 0.05, 0) ToggleBtn.Size = UDim2.new(0.8, 0, 0, 45) -- Buton büyütüldü ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.Text = "FLY: OFF" ToggleBtn.TextColor3 = Color3.fromRGB(255, 60, 60) ToggleBtn.TextSize = 20 -- Yazı büyütüldü -- Speed Label SpeedLabel.Parent = Container SpeedLabel.Text = "Fly Speed:" SpeedLabel.TextColor3 = Color3.fromRGB(180, 180, 180) SpeedLabel.Size = UDim2.new(1, 0, 0, 25) SpeedLabel.Position = UDim2.new(0, 0, 0.45, 0) SpeedLabel.BackgroundTransparency = 1 SpeedLabel.Font = Enum.Font.SourceSans SpeedLabel.TextSize = 16 -- Speed Box (Giriş kutusu büyütüldü) SpeedBox.Parent = Container SpeedBox.BackgroundColor3 = Color3.fromRGB(45, 45, 45) SpeedBox.BorderSizePixel = 0 SpeedBox.Position = UDim2.new(0.2, 0, 0.65, 0) SpeedBox.Size = UDim2.new(0.6, 0, 0, 35) SpeedBox.Text = "50" SpeedBox.TextColor3 = Color3.fromRGB(255, 255, 255) SpeedBox.Font = Enum.Font.SourceSansBold SpeedBox.TextSize = 18 --// Flight Logic (Aynı Stabilite) ToggleBtn.MouseButton1Click:Connect(function() flying = not flying flySpeed = tonumber(SpeedBox.Text) or 50 if flying then ToggleBtn.Text = "FLY: ON" ToggleBtn.TextColor3 = Color3.fromRGB(60, 255, 60) local char = player.Character if not char then return end local root = char:WaitForChild("HumanoidRootPart") local bg = Instance.new("BodyGyro", root) bg.P = 9e4 bg.maxTorque = Vector3.new(9e9, 9e9, 9e9) local bv = Instance.new("BodyVelocity", root) bv.maxForce = Vector3.new(9e9, 9e9, 9e9) task.spawn(function() while flying and char and root do task.wait() char.Humanoid.PlatformStand = true bv.velocity = camera.CFrame.LookVector * flySpeed bg.cframe = camera.CFrame end if bg then bg:Destroy() end if bv then bv:Destroy() end if char:FindFirstChild("Humanoid") then char.Humanoid.PlatformStand = false end end) else ToggleBtn.Text = "FLY: OFF" ToggleBtn.TextColor3 = Color3.fromRGB(255, 60, 60) end end)