local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "h0imerpr1meGuiV2" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Name = "MainFrame" frame.Parent = gui frame.BackgroundColor3 = Color3.fromRGB(10, 25, 60) frame.BorderColor3 = Color3.fromRGB(0, 0, 0) frame.BorderSizePixel = 2 frame.Position = UDim2.new(0.1, 0, 0.24, 0) frame.Size = UDim2.new(0.22, 0, 0.68, 0) frame.Draggable = true frame.Active = true frame.Selectable = true -- Başlıklar local title = Instance.new("TextLabel") title.Parent = frame title.BackgroundTransparency = 1 title.Position = UDim2.new(0.08, 0, 0, 0) title.Size = UDim2.new(0.84, 0, 0.07, 0) title.Font = Enum.Font.SourceSansBold title.Text = "h0imerpr1meGui V2" title.TextColor3 = Color3.fromRGB(220, 230, 255) title.TextScaled = true local title2 = Instance.new("TextLabel") title2.Parent = frame title2.BackgroundTransparency = 1 title2.Position = UDim2.new(0.08, 0, 0.07, 0) title2.Size = UDim2.new(0.84, 0, 0.06, 0) title2.Text = "Server Destruction" title2.TextColor3 = Color3.fromRGB(200, 220, 255) title2.TextScaled = true local title3 = Instance.new("TextLabel") title3.Parent = frame title3.BackgroundTransparency = 1 title3.Position = UDim2.new(0.08, 0, 0.67, 0) title3.Size = UDim2.new(0.84, 0, 0.07, 0) title3.Text = "Sounds" title3.TextColor3 = Color3.fromRGB(200, 220, 255) title3.TextScaled = true local credit = Instance.new("TextLabel") credit.Parent = frame credit.BackgroundTransparency = 1 credit.Position = UDim2.new(0.08, 0, 0.94, 0) credit.Size = UDim2.new(0.84, 0, 0.05, 0) credit.Text = "(made by h0imerpr1me)" credit.TextColor3 = Color3.fromRGB(180, 200, 255) credit.TextScaled = true -- Buton oluşturucu local function newButton(text, posX, posY) local btn = Instance.new("TextButton") btn.Parent = frame btn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) btn.BorderColor3 = Color3.fromRGB(0, 0, 0) btn.BorderSizePixel = 2 btn.Position = UDim2.new(posX, 0, posY, 0) btn.Size = UDim2.new(0.435, 0, 0.064, 0) btn.Text = text btn.TextColor3 = Color3.fromRGB(20, 20, 20) btn.Font = Enum.Font.SourceSansSemibold btn.TextScaled = true btn.TextWrapped = true return btn end -- Butonlar (konumlar eski TubuusGui ile aynı) local skybox = newButton("SkyBox", 0.022, 0.170) local decalspam = newButton("DecalSpam", 0.548, 0.170) local particles = newButton("Particles", 0.022, 0.255) local fireall = newButton("Fire All", 0.548, 0.255) local unanchor = newButton("Un Anchor All", 0.022, 0.333) local anchor = newButton("Anchor All", 0.548, 0.333) local killall = newButton("Kill All", 0.017, 0.417) local ff = newButton("FF", 0.542, 0.417) local message = newButton("Message (LOOP)", 0.542, 0.589) local hint = newButton("Hint", 0.020, 0.589) local kickall = newButton("Kick All", 0.020, 0.504) local stopsound = newButton("Stop All Sounds", 0.542, 0.504) local theme1 = newButton("h0imerpr1me Theme", 0.020, 0.778) local theme2 = newButton("G00by Theme", 0.545, 0.778) local theme3 = newButton("Eagle Reborned Theme", 0.022, 0.863) local theme4 = newButton("Gangstas Paradise Funny", 0.542, 0.863) -- ────────────────────────────────────────────── -- ORTAK: GetCleanLogo (Sky/Particle/Decal için) -- ────────────────────────────────────────────── local skyId = 72233197149488 local logoId = 92907011518904 local function GetCleanLogo(id) local success, result = pcall(function() local obj = game:GetObjects("rbxassetid://" .. id)[1] local imgId = obj.Graphic obj:Destroy() return imgId end) if success then return result else return "rbxthumb://type=Asset&id=" .. id .. "&w=768&h=768" end end -- SkyBox (temiz ID) skybox.MouseButton1Click:Connect(function() game.Lighting:ClearAllChildren() local clean = GetCleanLogo(skyId) local sky = Instance.new("Sky", game.Lighting) sky.SkyboxBk = clean sky.SkyboxDn = clean sky.SkyboxFt = clean sky.SkyboxLf = clean sky.SkyboxRt = clean sky.SkyboxUp = clean end) -- Particles (temiz ID + oyunculara) particles.MouseButton1Click:Connect(function() local clean = GetCleanLogo(logoId) for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then local pe = Instance.new("ParticleEmitter", plr.Character.HumanoidRootPart) pe.Texture = clean pe.Rate = 2000 pe.Size = NumberSequence.new(1.5, 2.5) pe.Lifetime = NumberRange.new(100000, 100000) pe.VelocitySpread = 40 pe.Speed = NumberRange.new(30, 60) pe.Acceleration = Vector3.new(0, 15, 0) end end end) -- DecalSpam (temiz ID + tüm BasePart'lar) decalspam.MouseButton1Click:Connect(function() local clean = GetCleanLogo(logoId) for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then for _, face in pairs({"Front","Back","Left","Right","Top","Bottom"}) do local d = Instance.new("Decal", obj) d.Face = face d.Texture = clean end end end end) -- Fire All (eski basit hali) fireall.MouseButton1Click:Connect(function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then Instance.new("Fire", v).Size = 12 local s = Instance.new("SelectionBox", v) s.Adornee = v s.Color3 = Color3.new(1,0,0) end end end) -- Un Anchor All → Eski Tubuus tarzı (tüm container'lar) unanchor.MouseButton1Click:Connect(function() for _, container in pairs({workspace, game.ReplicatedStorage, game.ServerStorage}) do for _, v in pairs(container:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = false end end end end) -- Anchor All → Eski Tubuus tarzı anchor.MouseButton1Click:Connect(function() for _, container in pairs({workspace, game.ReplicatedStorage, game.ServerStorage}) do for _, v in pairs(container:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = true end end end end) -- Kill All → Eski Tubuus tarzı killall.MouseButton1Click:Connect(function() for _, plr in pairs(game.Players:GetPlayers()) do if plr.Character and plr.Character:FindFirstChild("Humanoid") then plr.Character.Humanoid.Health = 0 end end end) -- Kick All → Eski Tubuus tarzı kickall.MouseButton1Click:Connect(function() for _, plr in pairs(game.Players:GetPlayers()) do if plr then plr:Kick("Hacked By h0imerpr1me!") end end end) -- ForceField (kendine) ff.MouseButton1Click:Connect(function() local char = player.Character if char then Instance.new("ForceField", char) end end) -- Hint hint.MouseButton1Click:Connect(function() local h = Instance.new("Hint", workspace) h.Text = "h0imerpr1me Fucked this Game MUAHAHAHAHA!1!1!1!!" end) -- Message Loop message.MouseButton1Click:Connect(function() spawn(function() while true do local msg = Instance.new("Message", workspace) msg.Text = "Join h0imerpr1me Today NOW!1!" wait(0.5) msg:Destroy() wait(0.5) end end) end) -- Şarkılar → Eski TubuusGui'deki tam ayarlar theme1.MouseButton1Click:Connect(function() -- h0imerpr1me Theme local s = Instance.new("Sound", game.SoundService) s.SoundId = "rbxassetid://94533013083491" s.Volume = 9999999999 s.PlaybackSpeed = 0.8 s.Looped = true s:Play() end) theme2.MouseButton1Click:Connect(function() -- G00by Theme local s = Instance.new("Sound", game.SoundService) s.SoundId = "rbxassetid://1847661821" s.Volume = 9999999999 s.PlaybackSpeed = 1 s.Looped = true s:Play() end) theme3.MouseButton1Click:Connect(function() -- Eagle Reborned Theme local s = Instance.new("Sound", game.SoundService) s.SoundId = "rbxassetid://1839246711" s.Volume = 5 s.PlaybackSpeed = 1 s.Looped = true s:Play() end) theme4.MouseButton1Click:Connect(function() -- Gangstas Paradise Funny local s = Instance.new("Sound", game.SoundService) s.SoundId = "rbxassetid://5228173823" s.Volume = 0.4 s.PlaybackSpeed = 1 s.Looped = true s:Play() end) -- Stop All Sounds → Eski Tubuus tarzı stopsound.MouseButton1Click:Connect(function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("Sound") then v:Destroy() end end for _, v in pairs(game.SoundService:GetDescendants()) do if v:IsA("Sound") then v:Destroy() end end end) print("GUI yüklendi - Eski Tubuus Anchor/Kill/Kick/Şarkılar geri geldi!")