local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- إنشاء ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "WhiteScreenGui" screenGui.Parent = playerGui screenGui.ResetOnSpawn = false -- خلفية بيضاء local background = Instance.new("Frame") background.Parent = screenGui background.Size = UDim2.new(1, 0, 1, 0) background.Position = UDim2.new(0, 0, 0, 0) background.BackgroundColor3 = Color3.new(1, 1, 1) -- مربع كتابة local textbox = Instance.new("TextBox") textbox.Parent = background textbox.Size = UDim2.new(0.9, 0, 0.15, 0) textbox.Position = UDim2.new(0.05, 0, 0.05, 0) textbox.Text = "" textbox.TextScaled = true textbox.BackgroundColor3 = Color3.new(0.95, 0.95, 0.95) textbox.TextColor3 = Color3.new(0, 0, 0) textbox.ClearTextOnFocus = false textbox.Font = Enum.Font.SourceSans -- زر Executor local execBtn = Instance.new("TextButton") execBtn.Parent = background execBtn.Size = UDim2.new(0.4, 0, 0.1, 0) execBtn.Position = UDim2.new(0.05, 0, 0.25, 0) execBtn.Text = "Executor" execBtn.TextScaled = true execBtn.BackgroundColor3 = Color3.fromRGB(200, 200, 200) execBtn.TextColor3 = Color3.new(0, 0, 0) execBtn.Font = Enum.Font.SourceSansBold -- زر Sunrise local sunriseBtn = Instance.new("TextButton") sunriseBtn.Parent = background sunriseBtn.Size = UDim2.new(0.4, 0, 0.1, 0) sunriseBtn.Position = UDim2.new(0.55, 0, 0.25, 0) sunriseBtn.Text = "Sunrise" sunriseBtn.TextScaled = true sunriseBtn.BackgroundColor3 = Color3.fromRGB(200, 200, 200) sunriseBtn.TextColor3 = Color3.new(0, 0, 0) sunriseBtn.Font = Enum.Font.SourceSansBold -- صورة Executor local image = Instance.new("ImageLabel") image.Parent = background image.Size = UDim2.new(1, 0, 1, 0) image.Position = UDim2.new(0, 0, 0, 0) image.Image = "rbxassetid://138255230235417" image.BackgroundTransparency = 1 image.Visible = false -- نص "وضعك وانت مصدق:" local jokeText = Instance.new("TextLabel") jokeText.Parent = image jokeText.Size = UDim2.new(1, 0, 0.15, 0) jokeText.Position = UDim2.new(0, 0, 0, 0) jokeText.Text = "وضعك وانت مصدق:" jokeText.TextScaled = true jokeText.BackgroundTransparency = 1 jokeText.TextColor3 = Color3.new(1, 1, 1) jokeText.Font = Enum.Font.SourceSansBold jokeText.Visible = false -- الصوت local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://89602358504354" sound.Volume = 1 sound.Parent = background -- عند الضغط على Executor execBtn.MouseButton1Click:Connect(function() image.Visible = true jokeText.Visible = true sound:Play() task.wait(7) image.Visible = false jokeText.Visible = false sound:Stop() end) -- عند الضغط على Sunrise sunriseBtn.MouseButton1Click:Connect(function() screenGui:Destroy() end)