local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui -- Menüyü kapsayan çerçeve local menuFrame = Instance.new("Frame") menuFrame.Size = UDim2.new(0, 300, 0, 500) menuFrame.Position = UDim2.new(0.5, -150, 0.5, -250) menuFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) menuFrame.BackgroundTransparency = 0.7 menuFrame.Visible = false -- Başlangıçta menü görünmez menuFrame.Parent = screenGui -- Menü başlığı local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(0, 300, 0, 50) titleLabel.Position = UDim2.new(0, 0, 0, 0) titleLabel.Text = "ExeHub by UmySmays" titleLabel.TextSize = 20 titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.BackgroundTransparency = 1 titleLabel.Parent = menuFrame -- Menüyü açıp kapatacak buton local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0, 50, 0, 50) toggleButton.Position = UDim2.new(0, 250, 0, 0) toggleButton.Text = "+" toggleButton.TextSize = 20 toggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) toggleButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) toggleButton.Parent = menuFrame toggleButton.MouseButton1Click:Connect(function() -- Menüyü açıp kapat menuFrame.Visible = not menuFrame.Visible if menuFrame.Visible then toggleButton.Text = "-" -- Menüyü açtığında butonu "-" yap else toggleButton.Text = "+" -- Menüyü kapattığında butonu "+" yap end end) -- YouTube butonu local youtubeButton = Instance.new("TextButton") youtubeButton.Size = UDim2.new(0, 280, 0, 40) youtubeButton.Position = UDim2.new(0, 10, 0, 60) youtubeButton.Text = "YouTube: UmySmays" youtubeButton.TextSize = 14 youtubeButton.TextColor3 = Color3.fromRGB(255, 255, 255) youtubeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) youtubeButton.Parent = menuFrame youtubeButton.MouseButton1Click:Connect(function() -- YouTube linkini aç local url = "https://www.youtube.com/c/UmySmays" -- YouTube kanalının linki game:GetService("GuiService"):OpenBrowserWindow(url) end) -- Noclip butonu local noclipButton = Instance.new("TextButton") noclipButton.Size = UDim2.new(0, 280, 0, 50) noclipButton.Position = UDim2.new(0, 10, 0, 110) noclipButton.Text = "Noclip Aç/Kapat" noclipButton.Parent = menuFrame local noclipEnabled = false noclipButton.MouseButton1Click:Connect(function() noclipEnabled = not noclipEnabled -- Noclip'i açıp kapat if noclipEnabled then -- Noclip'i aç player.Character.HumanoidRootPart.CanCollide = false player.Character.Humanoid.PlatformStand = true -- Yerçekimi etkisi yok else -- Noclip'i kapat player.Character.HumanoidRootPart.CanCollide = true player.Character.Humanoid.PlatformStand = false end end) -- Fly butonu local flyButton = Instance.new("TextButton") flyButton.Size = UDim2.new(0, 280, 0, 50) flyButton.Position = UDim2.new(0, 10, 0, 180) flyButton.Text = "Fly Aç/Kapat" flyButton.Parent = menuFrame local flying = false local bodyVelocity flyButton.MouseButton1Click:Connect(function() flying = not flying -- Fly'i açıp kapat if flying then -- Fly'ı aç bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.MaxForce = Vector3.new(100000, 100000, 100000) bodyVelocity.Velocity = Vector3.new(0, 0, 0) bodyVelocity.Parent = player.Character.HumanoidRootPart -- Uçma yönü game:GetService("RunService").Heartbeat:Connect(function() if flying then bodyVelocity.Velocity = player.Character.HumanoidRootPart.CFrame.LookVector * 50 + Vector3.new(0, 20, 0) end end) else -- Fly'ı kapat if bodyVelocity then bodyVelocity:Destroy() end end end) -- Hız butonu local speedButton = Instance.new("TextButton") speedButton.Size = UDim2.new(0, 280, 0, 50) speedButton.Position = UDim2.new(0, 10, 0, 240) speedButton.Text = "Hız Artışı" speedButton.Parent = menuFrame speedButton.MouseButton1Click:Connect(function() player.Character.Humanoid.WalkSpeed = 100 wait(5) player.Character.Humanoid.WalkSpeed = 16 -- Hız normalleşiyor end) -- Zıplama butonu local jumpButton = Instance.new("TextButton") jumpButton.Size = UDim2.new(0, 280, 0, 50) jumpButton.Position = UDim2.new(0, 10, 0, 300) jumpButton.Text = "Zıplama Artışı" jumpButton.Parent = menuFrame jumpButton.MouseButton1Click:Connect(function() player.Character.Humanoid.JumpPower = 150 wait(5) player.Character.Humanoid.JumpPower = 50 -- Zıplama normalleşiyor end) -- Renk değiştirme butonu local colorButton = Instance.new("TextButton") colorButton.Size = UDim2.new(0, 280, 0, 50) colorButton.Position = UDim2.new(0, 10, 0, 360) colorButton.Text = "Renk Değiştir" colorButton.Parent = menuFrame colorButton.MouseButton1Click:Connect(function() local randomColor = Color3.fromHSV(math.random(), 1, 1) -- Rastgele renk player.Character.HumanoidRootPart.BrickColor = BrickColor.new(randomColor) end) -- Ses efektleri butonu local soundButton = Instance.new("TextButton") soundButton.Size = UDim2.new(0, 280, 0, 50) soundButton.Position = UDim2.new(0, 10, 0, 420) soundButton.Text = "Komik Ses Efekti" soundButton.Parent = menuFrame soundButton.MouseButton1Click:Connect(function() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://" -- Komik bir ses ekleyebilirsin sound.Parent = player.Character.HumanoidRootPart sound:Play() end)