-- Harpon GUI | Delta Executor - TÜM ÖZELLİKLER local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "HARPON GUI🔱( NOT fe)", LoadingTitle = "Harpon GUI Yükleniyor...", LoadingSubtitle = "Tüm Özellikler Aktif!", ConfigurationSaving = {Enabled = true, FolderName = "HarponGUI", FileName = "Config"}, KeySystem = false, }) -- JUMPSCARE TAB local JumpscareTab = Window:CreateTab("👻 Jumpscare", 125115447008912) local JumpscareSection = JumpscareTab:CreateSection("Jumpscare Efektleri") local JumpscareButton = JumpscareTab:CreateButton({ Name = "👻 JUMPSCARE AKTİF ET!", Callback = function() local screenGui = Instance.new("ScreenGui") screenGui.Name = "HarponJumpscare" screenGui.Parent = game.Players.LocalPlayer.PlayerGui local imageLabel = Instance.new("ImageLabel") imageLabel.Name = "JumpscareImage" imageLabel.Size = UDim2.new(1, 0, 1, 0) imageLabel.Position = UDim2.new(0, 0, 0, 0) imageLabel.BackgroundColor3 = Color3.new(0, 0, 0) imageLabel.BackgroundTransparency = 0 imageLabel.Image = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" imageLabel.ScaleType = Enum.ScaleType.Fit imageLabel.Parent = screenGui local sound = Instance.new("Sound") sound.Name = "JumpscareSound" sound.SoundId = "rbxassetid://6129291390" sound.Volume = 1.5 sound.Parent = game:GetService("SoundService") sound:Play() wait(4) screenGui:Destroy() sound:Stop() Rayfield:Notify({ Title = "😅 JUMPSCARE BİTTİ", Content = "Korktun mu reis?", Duration = 4, }) end, }) -- MEGA DECAL TAB local DecalTab = Window:CreateTab("🎨 Mega Decal", 125115447008912) local DecalSection = DecalTab:CreateSection("Tüm Yüzeylere Decal Ekle") local MegaDecalButton = DecalTab:CreateButton({ Name = "🌍 TÜM YÜZEYLERE DECAL EKLE", Callback = function() local decalCount = 0 for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("Part") or part:IsA("MeshPart") or part:IsA("UnionOperation") then local faces = { Enum.NormalId.Front, Enum.NormalId.Back, Enum.NormalId.Left, Enum.NormalId.Right, Enum.NormalId.Top, Enum.NormalId.Bottom } for _, face in ipairs(faces) do local decal = Instance.new("Decal") decal.Name = "HarponMegaDecal" decal.Face = face decal.Texture = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" decal.Parent = part decalCount = decalCount + 1 end end end Rayfield:Notify({ Title = "🌍 MEGA DECAL!", Content = decalCount .. " decal eklendi! Her yer Harpon!", Duration = 6, }) end, }) local ClearDecalButton = DecalTab:CreateButton({ Name = "🧹 TÜM DECAL'LERİ TEMİZLE", Callback = function() local removedCount = 0 for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("Part") then for _, decal in ipairs(part:GetChildren()) do if decal:IsA("Decal") and decal.Name:find("Harpon") then decal:Destroy() removedCount = removedCount + 1 end end end end Rayfield:Notify({ Title = "🧹 TEMİZLENDİ!", Content = removedCount .. " decal kaldırıldı!", Duration = 4, }) end, }) -- SKYBOX TAB local SkyTab = Window:CreateTab("🌌 Skybox", 125115447008912) local SkySection = SkyTab:CreateSection("Skybox Değiştir") local SkyboxButton = SkyTab:CreateButton({ Name = "🌌 Skybox'ı Değiştir", Callback = function() local lighting = game:GetService("Lighting") if lighting:FindFirstChildOfClass("Sky") then lighting:FindFirstChildOfClass("Sky"):Destroy() end local newSky = Instance.new("Sky") newSky.SkyboxBk = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" newSky.SkyboxDn = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" newSky.SkyboxFt = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" newSky.SkyboxLf = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" newSky.SkyboxRt = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" newSky.SkyboxUp = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" newSky.Parent = lighting Rayfield:Notify({ Title = "🌌 Skybox Değişti!", Content = "Skybox Harpon oldu!", Duration = 5, }) end, }) -- MY TEAM PICTURE TAB local TeamTab = Window:CreateTab("🏆 My Team", 125115447008912) local TeamSection = TeamTab:CreateSection("My Team Picture") local TeamButton = TeamTab:CreateButton({ Name = "🏆 MY TEAM PICTURE", Callback = function() local screenGui = Instance.new("ScreenGui") screenGui.Name = "HarponTeamPicture" screenGui.Parent = game.Players.LocalPlayer.PlayerGui local imageLabel = Instance.new("ImageLabel") imageLabel.Name = "TeamImage" imageLabel.Size = UDim2.new(1, 0, 1, 0) imageLabel.Position = UDim2.new(0, 0, 0, 0) imageLabel.BackgroundColor3 = Color3.new(0, 0, 0) imageLabel.BackgroundTransparency = 0 imageLabel.Image = "rbxthumb://type=Asset&id=125115447008912&w=420&h=420" imageLabel.ScaleType = Enum.ScaleType.Fit imageLabel.Parent = screenGui local textLabel = Instance.new("TextLabel") textLabel.Name = "TeamText" textLabel.Size = UDim2.new(1, 0, 0.2, 0) textLabel.Position = UDim2.new(0, 0, 0.7, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "TODAY JOIN FOR Powther\nWon 29" textLabel.TextColor3 = Color3.new(1, 1, 1) textLabel.TextScaled = true textLabel.Font = Enum.Font.GothamBold textLabel.Parent = screenGui wait(4) screenGui:Destroy() Rayfield:Notify({ Title = "🏆 MY TEAM PICTURE", Content = "Resim 4 saniye gösterildi!", Duration = 3, }) end, }) -- FE PARTICLE TAB local FeParticleTab = Window:CreateTab("✨ FE Particles", 125115447008912) local FeParticleSection = FeParticleTab:CreateSection("FE Particle Efektleri") local feFireToggle = FeParticleTab:CreateToggle({ Name = "🔥 FE Ateş (Herkes Görür)", CurrentValue = false, Callback = function(Value) local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then if Value then local fire = Instance.new("Fire") fire.Name = "FeHarponFire" fire.Size = 25 fire.Color = Color3.new(1, 0, 0) fire.Parent = char.HumanoidRootPart else local existingFire = char.HumanoidRootPart:FindFirstChild("FeHarponFire") if existingFire then existingFire:Destroy() end end end end, }) local feSmokeToggle = FeParticleTab:CreateToggle({ Name = "💨 FE Duman (Herkes Görür)", CurrentValue = false, Callback = function(Value) local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then if Value then local smoke = Instance.new("Smoke") smoke.Name = "FeHarponSmoke" smoke.Size = 12 smoke.Color = Color3.new(0.1, 0.1, 0.1) smoke.Parent = char.HumanoidRootPart else local existingSmoke = char.HumanoidRootPart:FindFirstChild("FeHarponSmoke") if existingSmoke then existingSmoke:Destroy() end end end end, }) -- CHARACTER EFFECTS TAB local CharacterTab = Window:CreateTab("🎭 Character", 125115447008912) local CharacterSection = CharacterTab:CreateSection("Karakter Efektleri") local WalkSpeedSlider = CharacterTab:CreateSlider({ Name = "🚀 Yürüme Hızı", Range = {16, 100}, Increment = 5, Suffix = "speed", CurrentValue = 16, Callback = function(Value) local character = game.Players.LocalPlayer.Character if character and character:FindFirstChild("Humanoid") then character.Humanoid.WalkSpeed = Value end end, }) local JumpPowerSlider = CharacterTab:CreateSlider({ Name = "🦘 Zıplama Gücü", Range = {50, 200}, Increment = 10, Suffix = "power", CurrentValue = 50, Callback = function(Value) local character = game.Players.LocalPlayer.Character if character and character:FindFirstChild("Humanoid") then character.Humanoid.JumpPower = Value end end, }) Rayfield:Notify({ Title = "🔱 HARPON GUI - TÜM ÖZELLİKLER!", Content = "Jumpscare, Decal, Skybox, My Team, FE Particles hazır!", Duration = 8, })