--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local Players = game:GetService("Players") local player = Players.LocalPlayer local Lighting = game:GetService("Lighting") -- إنشاء ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "ScreenGui" ScreenGui.Parent = player:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Global -- إنشاء Frame رئيسي local Frame = Instance.new("Frame") Frame.Name = "Frame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0, 127, 127) Frame.Position = UDim2.new(0, 150, 0, 0) Frame.Size = UDim2.new(0, 350, 0, 260) Frame.Active = true Frame.Draggable = true -- دالة إنشاء الأزرار local function CreateButton(parent, name, pos, size, text, textSize) local btn = Instance.new("TextButton") btn.Name = name btn.Parent = parent btn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) btn.Position = pos btn.Size = size btn.Font = Enum.Font.DenkOne btn.Text = text btn.TextColor3 = Color3.fromRGB(0, 0, 0) btn.TextSize = textSize local corner = Instance.new("UICorner") corner.Parent = btn return btn end -- دالة إنشاء الصور local function CreateImage(parent, pos, size, imageId) local img = Instance.new("ImageLabel") img.Parent = parent img.Position = pos img.Size = size img.Image = "rbxassetid://"..imageId img.BackgroundColor3 = Color3.fromRGB(162,162,162) img.BorderColor3 = Color3.fromRGB(27,42,53) img.BorderSizePixel = 1 return img end -- إنشاء الصور في الأعلى CreateImage(Frame, UDim2.new(0,0,0,0), UDim2.new(0,60,0,50), "128547638416371") CreateImage(Frame, UDim2.new(0,290,0,0), UDim2.new(0,60,0,50), "128547638416371") -- إنشاء العنوان local TextLabel = Instance.new("TextLabel") TextLabel.Name = "TextLabel" TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(0,127,127) TextLabel.Position = UDim2.new(0,70,0,0) TextLabel.Size = UDim2.new(0,200,0,50) TextLabel.Font = Enum.Font.Arcade TextLabel.Text = "✌الحربي✌" TextLabel.TextColor3 = Color3.fromRGB(27,42,53) TextLabel.TextSize = 28 local cornerTitle = Instance.new("UICorner") cornerTitle.Parent = TextLabel -- إنشاء الأزرار local btnSky = CreateButton(Frame, "TextButtonSky", UDim2.new(0,0,0,53), UDim2.new(0,100,0,46), "Sky", 36) local btnSky2 = CreateButton(Frame, "TextButtonSky2", UDim2.new(0,120,0,53), UDim2.new(0,100,0,46), "Sky2", 36) local btn666 = CreateButton(Frame, "TextButton666", UDim2.new(0,240,0,53), UDim2.new(0,100,0,46), "666", 24) local btnMusic = CreateButton(Frame, "TextButtonMusic", UDim2.new(0,0,0,130), UDim2.new(0,100,0,46), "Music", 24) local btnHint = CreateButton(Frame, "TextButtonHint", UDim2.new(0,120,0,130), UDim2.new(0,100,0,46), "Hint", 24) local btnJumpScare = CreateButton(Frame, "TextButtonJumpScare", UDim2.new(0,240,0,130), UDim2.new(0,100,0,46), "Jumpscare", 24) local btnFaceAll = CreateButton(Frame, "TextButtonFaceAll", UDim2.new(0,0,0,199), UDim2.new(0,100,0,46), "Face All", 24) local btnRainFire = CreateButton(Frame, "TextButtonRainFire", UDim2.new(0,120,0,199), UDim2.new(0,100,0,46), "RainFire", 36) local btnDecalSpam = CreateButton(Frame, "TextButtonDecalSpam", UDim2.new(0,240,0,199), UDim2.new(0,100,0,46), "DecalSpam", 24) -- وظيفة زر Sky btnSky.MouseButton1Click:Connect(function() if Lighting:FindFirstChildOfClass("Sky") then Lighting:FindFirstChildOfClass("Sky"):Destroy() end local sky = Instance.new("Sky") sky.Parent = Lighting local id = "128547638416371" sky.SkyboxBk = "rbxassetid://"..id sky.SkyboxDn = "rbxassetid://"..id sky.SkyboxFt = "rbxassetid://"..id sky.SkyboxLf = "rbxassetid://"..id sky.SkyboxRt = "rbxassetid://"..id sky.SkyboxUp = "rbxassetid://"..id end) -- وظيفة زر Sky2 btnSky2.MouseButton1Click:Connect(function() if Lighting:FindFirstChildOfClass("Sky") then Lighting:FindFirstChildOfClass("Sky"):Destroy() end local sky = Instance.new("Sky") sky.Parent = Lighting local newSkyId = "128547638416371" -- الكود الجديد للسماء الثانية sky.SkyboxBk = "rbxassetid://"..newSkyId sky.SkyboxDn = "rbxassetid://"..newSkyId sky.SkyboxFt = "rbxassetid://"..newSkyId sky.SkyboxLf = "rbxassetid://"..newSkyId sky.SkyboxRt = "rbxassetid://"..newSkyId sky.SkyboxUp = "rbxassetid://"..newSkyId end) -- وظيفة زر DecalSpam btnDecalSpam.MouseButton1Click:Connect(function() local assetId = "128547638416371" for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then for _, child in pairs(obj:GetChildren()) do if child:IsA("Decal") then child:Destroy() end end local faces = {"Front","Back","Left","Right","Top","Bottom"} for _, face in pairs(faces) do local decal = Instance.new("Decal") decal.Face = Enum.NormalId[face] decal.Texture = "rbxassetid://"..assetId decal.Parent = obj end end end end) -- وظيفة زر 666 (يحرق كل شيء) btn666.MouseButton1Click:Connect(function() for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.BrickColor = BrickColor.new("Really red") obj.Material = Enum.Material.Neon if obj:FindFirstChildOfClass("Fire") then obj:FindFirstChildOfClass("Fire"):Destroy() end local fire = Instance.new("Fire") fire.Heat = 30 fire.Size = 30 fire.Parent = obj end end end) -- وظيفة زر Jumpscare مع الصورة والصوت لمدة 5 ثواني btnJumpScare.MouseButton1Click:Connect(function() local imageId = "128547638416371" local soundId = "103215672097028" local jumpscareGui = Instance.new("ScreenGui") jumpscareGui.Parent = player:WaitForChild("PlayerGui") jumpscareGui.ZIndexBehavior = Enum.ZIndexBehavior.Global jumpscareGui.ResetOnSpawn = false local jumpscare = Instance.new("ImageLabel") jumpscare.Parent = jumpscareGui jumpscare.Size = UDim2.new(1,0,1,0) jumpscare.Position = UDim2.new(0,0,0,0) jumpscare.BackgroundTransparency = 1 jumpscare.Image = "rbxassetid://"..imageId jumpscare.ScaleType = Enum.ScaleType.Stretch jumpscare.Visible = true local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://"..soundId sound.Volume = 1 sound.Parent = jumpscareGui sound:Play() task.delay(5, function() sound:Stop() jumpscareGui:Destroy() end) end) -- وظيفة زر Hint دائم btnHint.MouseButton1Click:Connect(function() local existingHint = workspace:FindFirstChildWhichIsA("Hint") if existingHint then existingHint:Destroy() end local m = Instance.new("Hint") m.Parent = workspace m.Text = "✌Al-Harbi✌!" end) -- وظيفة زر Music الجديد btnMusic.MouseButton1Click:Connect(function() local existingSound = workspace:FindFirstChild("MusicSound") if existingSound then existingSound:Destroy() end local sound = Instance.new("Sound") sound.Name = "MusicSound" sound.SoundId = "rbxassetid://7795812961" sound.Volume = 1 sound.Looped = true sound.Parent = workspace sound:Play() end) -- وظيفة زر RainFire btnRainFire.MouseButton1Click:Connect(function() local count = 20 for i = 1, count do local part = Instance.new("Part") part.Size = Vector3.new(4,1,4) part.Anchored = false part.BrickColor = BrickColor.new("Really red") part.Material = Enum.Material.Neon part.Position = Vector3.new( math.random(-50,50), 100 + math.random(0,50), math.random(-50,50) ) part.Parent = workspace local fire = Instance.new("Fire") fire.Heat = 10 fire.Size = 10 fire.Parent = part part.Name = "Party" game:GetService("Debris"):AddItem(part, 10) end end) -- وظيفة زر Face All btnFaceAll.MouseButton1Click:Connect(function() local faceImageId = "130167251155105" for _, plr in pairs(Players:GetPlayers()) do if plr.Character and plr.Character:FindFirstChild("Head") then local head = plr.Character.Head if head:FindFirstChildOfClass("Decal") then head:FindFirstChildOfClass("Decal"):Destroy() end local face = Instance.new("Decal") face.Face = Enum.NormalId.Front face.Texture = "rbxassetid://"..faceImageId face.Parent = head end end end)