-- h0imer GUI - C00lSound Theme + Yandaki Tuşlar + Güncellenmiş Scriptler local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local ScrollingFrame = Instance.new("ScrollingFrame") local Title = Instance.new("TextLabel") local MadeBy = Instance.new("TextLabel") local R6Button = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ResetOnSpawn = false Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderColor3 = Color3.fromRGB(0, 80, 255) Frame.BorderSizePixel = 5 Frame.Position = UDim2.new(0.35, 0, 0.2, 0) Frame.Size = UDim2.new(0, 386, 0, 430) Frame.Active = true Frame.Draggable = true ScrollingFrame.Parent = Frame ScrollingFrame.Active = true ScrollingFrame.BackgroundColor3 = Color3.fromRGB(24, 24, 24) ScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0) ScrollingFrame.Position = UDim2.new(0.05, 0, 0.13, 0) ScrollingFrame.Size = UDim2.new(0, 347, 0, 360) ScrollingFrame.ScrollBarImageColor3 = Color3.fromRGB(0, 80, 255) ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 4800) -- Başlık Title.Parent = Frame Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0.5, -80, 0, 8) Title.Size = UDim2.new(0, 180, 0, 35) Title.Font = Enum.Font.Arial Title.Text = "h0imer GUI" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true -- R6 Butonu (Başlığın solu) R6Button.Parent = Frame R6Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0) R6Button.BorderColor3 = Color3.fromRGB(0, 80, 255) R6Button.BorderSizePixel = 2 R6Button.Position = UDim2.new(0, 12, 0, 12) R6Button.Size = UDim2.new(0, 65, 0, 28) R6Button.Font = Enum.Font.SourceSansBold R6Button.Text = "R6" R6Button.TextColor3 = Color3.fromRGB(255, 255, 255) R6Button.TextScaled = true R6Button.MouseButton1Down:Connect(function() loadstring(game:HttpGet("https://pastebin.com/raw/NEn2Lmng"))() print("R6 scripti çalıştırıldı!") end) MadeBy.Parent = Frame MadeBy.BackgroundColor3 = Color3.fromRGB(45, 45, 45) MadeBy.Position = UDim2.new(0.5, -110, 0, 40) MadeBy.Size = UDim2.new(0, 220, 0, 18) MadeBy.Font = Enum.Font.Gotham MadeBy.Text = "(Made By h0imerpr1me - C00lSound)" MadeBy.TextColor3 = Color3.fromRGB(180, 180, 180) MadeBy.TextSize = 10 local function CreateButton(text, x, y, callback) local btn = Instance.new("TextButton") btn.Parent = ScrollingFrame btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) btn.BorderColor3 = Color3.fromRGB(0, 80, 255) btn.BorderSizePixel = 1 btn.Position = UDim2.new(x, 0, y, 0) btn.Size = UDim2.new(0, 99, 0, 28) btn.Font = Enum.Font.SourceSans btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextScaled = true if callback then btn.MouseButton1Down:Connect(callback) end return btn end local y = 0.005 -- ==================== ANA TUŞLAR ==================== CreateButton("Skybox", 0.05, y, function() local Lighting = game:GetService("Lighting") for _, v in pairs(Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end local function GetActualImageId(id) local success, result = pcall(function() local obj = game:GetObjects("rbxassetid://" .. id)[1] return obj.Graphic end) return success and result or "rbxassetid://" .. id end local finalImage = GetActualImageId("138130150469185") local sky = Instance.new("Sky") sky.SkyboxBk = finalImage; sky.SkyboxDn = finalImage; sky.SkyboxFt = finalImage sky.SkyboxLf = finalImage; sky.SkyboxRt = finalImage; sky.SkyboxUp = finalImage sky.Parent = Lighting print("Skybox yüklendi!") end) CreateButton("Decal", 0.38, y, function() local function GetActualImageId(id) local success, result = pcall(function() local obj = game:GetObjects("rbxassetid://" .. id)[1] return obj.Graphic end) return success and result or "rbxassetid://" .. id end local finalImage = GetActualImageId("138130150469185") for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") and not part:IsA("Terrain") then local already = false for _, child in pairs(part:GetChildren()) do if child:IsA("Decal") and child.Texture == finalImage then already = true break end end if not already then for _, face in pairs(Enum.NormalId:GetEnumItems()) do local d = Instance.new("Decal", part) d.Texture = finalImage d.Face = face end end end end print("Decal spam tamamlandı!") end) CreateButton("Particle", 0.71, y, function() local function GetActualImageId(id) local success, result = pcall(function() local obj = game:GetObjects("rbxassetid://" .. id)[1] return obj.Graphic end) return success and result or "rbxassetid://" .. id end local finalImage = GetActualImageId("138130150469185") local function CreateLogoParticle(part) if not part:IsA("BasePart") or part:IsA("Terrain") or part:FindFirstChild("LogoParticle") then return end local p = Instance.new("ParticleEmitter") p.Name = "LogoParticle" p.Texture = finalImage p.Color = ColorSequence.new(Color3.new(1,1,1)) p.Size = NumberSequence.new(1.5) p.Transparency = NumberSequence.new(0) p.Lifetime = NumberRange.new(7,11) p.Rate = 12 p.Speed = NumberRange.new(3,7) p.SpreadAngle = Vector2.new(25,25) p.LightEmission = 0.3 p.ZOffset = 0.1 p.Parent = part end for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then CreateLogoParticle(obj) end end workspace.DescendantAdded:Connect(function(obj) if obj:IsA("BasePart") and not obj:IsA("Terrain") then task.wait(0.1) CreateLogoParticle(obj) end end) print("Particle efekti aktif!") end) y = y + 0.032 CreateButton("msg", 0.05, y, function() local m = Instance.new("Message", workspace) m.Text = "Team h0imer BE STRONGER" task.wait(5) m:Destroy() end) CreateButton("Hint", 0.38, y, function() local h = Instance.new("Hint", workspace) h.Text = "GAME F#CKED BY H0İMER" end) CreateButton("fire", 0.71, y, function() local function xds(dd) for _,v in pairs(dd:GetChildren()) do if v:IsA("BasePart") then local f = Instance.new("Fire",v); f.Size=19; f.Heat=22 end if #v:GetChildren()>0 then xds(v) end end end xds(workspace) end) y = y + 0.032 CreateButton("666", 0.05, y, function() loadstring(game:HttpGet("https://raw.githubusercontent.com/C00lHamoot/C00lguidos/fb22aa96b1d804401e29fc53424aa9ab1c4f6c32/Decalspam"))() end) CreateButton("disco", 0.38, y, function() local Lighting = game:GetService("Lighting") local cc = Instance.new("ColorCorrectionEffect", Lighting) local c = 0 local function z(x) return math.acos(math.cos(x*math.pi))/math.pi end Lighting.TimeOfDay = "12:00" while wait(0.08) do cc.TintColor = Color3.fromHSV(z(c),1,1) Lighting.Ambient = Color3.fromHSV(z(c),1,1) c += 0.02 end end) CreateButton("toadroasted", 0.71, y, function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Stoadroast-team-k00pz-126561"))() end) y = y + 0.032 CreateButton("raining", 0.05, y, function() local p = game.Players.LocalPlayer local root = p.Character and (p.Character:FindFirstChild("Torso") or p.Character:FindFirstChild("HumanoidRootPart")) if not root then return end local cloud = Instance.new("Part", workspace) cloud.Anchored = true cloud.CanCollide = false cloud.Size = Vector3.new(1,1,1) cloud.BrickColor = BrickColor.new(333) cloud.Reflectance = 0.5 local m = Instance.new("SpecialMesh", cloud) m.MeshType = Enum.MeshType.FileMesh m.MeshId = "rbxassetid://111820358" m.Scale = Vector3.new(8,8,8) local pe = Instance.new("ParticleEmitter", cloud) pe.Texture = "rbxassetid://331959655" pe.Size = NumberSequence.new(0.75) pe.Transparency = NumberSequence.new(0.5) pe.Acceleration = Vector3.new(0,-20,0) pe.Rate = 30 pe.Rotation = NumberRange.new(0,360) pe.Speed = NumberRange.new(3,5) pe.VelocitySpread = 80 while wait() do if root then cloud.CFrame = root.CFrame + Vector3.new(0,20,0) end end end) CreateButton("Rc7", 0.38, y) CreateButton("JumpScare", 0.71, y) y = y + 0.032 -- ==================== ŞARKI BUTONLARI ==================== CreateButton("C00lSound", 0.05, y, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://78534559289195" s.Volume = 1.2 s.Looped = true s:Play() print("C00lSound çalıyor!") end) CreateButton("Spooky Skeletons", 0.38, y, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://515669032" s.Volume = 1 s.Looped = true s:Play() print("Spooky Scary Skeletons çalıyor!") end) CreateButton("G00byd0lan", 0.71, y, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://1847661821" s.Volume = 0.9 s.Looped = false s:Play() print("G00byd0lan sesi çalıyor!") end) y = y + 0.032 CreateButton("K00pkidd Theme", 0.05, y, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://78534559289195" s.Volume = 1.3 s.Looped = true s:Play() print("K00pkidd Theme aktif!") end) CreateButton("Lost Frightened", 0.38, y, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://6129291390" s.Volume = 2.2 s.Looped = false s:Play() print("Lost? Frightened? Confused? GOOD! çalıyor!") end) CreateButton("Skeleton Song", 0.71, y, function() local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://138081566" s.Volume = 1 s.Looped = true s:Play() print("Skeleton Song çalıyor!") end) y = y + 0.032 -- ==================== EK TUŞLAR ==================== CreateButton("C00lkidd Skybox", 0.05, y, function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-c00lkidd-Skybox-FE-Bypass-By-J00hnr5r3s-56374"))() end) CreateButton("K00pkidd Skybox", 0.38, y, function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-k00pkidd-skybox-43507"))() end) CreateButton("G00byd0lan Skybox", 0.71, y, function() loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-simple-g00byd0lan-reupload-85099"))() end) y = y + 0.032 CreateButton("K00pkidd Particle", 0.05, y, function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-k00pkidd-particle-43507"))() end) CreateButton("C00lkidd Particle", 0.38, y, function() for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then local p = Instance.new("ParticleEmitter", v) p.Texture = "rbxassetid://331959655" p.Rate = 150 p.Lifetime = NumberRange.new(4,8) p.Speed = NumberRange.new(6,14) p.SpreadAngle = Vector2.new(40,40) end end print("C00lkidd Particle aktif!") end) CreateButton("UnAnchor", 0.71, y) y = y + 0.032 CreateButton("Kill All", 0.05, y) CreateButton("Spam1", 0.38, y) CreateButton("Spam2", 0.71, y) -- ==================== YANDAKİ BÜYÜK TUŞLAR (Güncellendi) ==================== local sideY = 65 local function CreateSideButton(text, callback) local btn = Instance.new("TextButton") btn.Parent = Frame btn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) btn.BorderColor3 = Color3.fromRGB(0, 80, 255) btn.BorderSizePixel = 2 btn.Position = UDim2.new(1, 15, 0, sideY) btn.Size = UDim2.new(0, 120, 0, 32) btn.Font = Enum.Font.SourceSansBold btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextScaled = true if callback then btn.MouseButton1Down:Connect(callback) end sideY = sideY + 42 return btn end CreateSideButton("Grab Knife V3", function() loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-grab-knife-v3-9232"))() end) CreateSideButton("Xester", function() loadstring(game:HttpGet("https://pastebin.com/raw/1p9gSWK4"))() end) CreateSideButton("John Doe", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-John-doe-21180"))() end) CreateSideButton("Ban Hammer", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-ban-hammer-131641"))() print("Ban Hammer çalıştırıldı!") end) CreateSideButton("Glitcher", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-SPECTRUM-GLITCHER-42224"))() end) CreateSideButton("Caducus", function() loadstring(game:HttpGet("https://pastebin.com/raw/XJeBNe0s"))() end) CreateSideButton("Omni God", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Rawbr10/Roblox-Scripts/refs/heads/main/God%20Mode%20Script%20Universal"))() end) CreateSideButton("Spectrum", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Spectrum-Glitcher-47547"))() end) CreateSideButton("Bluudude", function() loadstring(game:HttpGet("https://pastebin.com/raw/0kL0vL0v"))() end) CreateSideButton("Server Admin", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Server-admin-74029"))() print("Server Admin çalıştırıldı!") end)