Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- داخل LocalScript يوضع في StarterPlayerScripts أو StarterGui
- local ScreenGui = Instance.new("ScreenGui", game.Players.LocalPlayer:WaitForChild("PlayerGui"))
- ScreenGui.Name = "TeamBlackPanel"
- local colors = {
- Color3.fromRGB(255, 0, 0),
- Color3.fromRGB(255, 127, 0),
- Color3.fromRGB(255, 255, 0),
- Color3.fromRGB(0, 255, 0),
- Color3.fromRGB(0, 255, 255),
- Color3.fromRGB(0, 0, 255),
- Color3.fromRGB(139, 0, 255),
- Color3.fromRGB(255, 0, 255),
- Color3.fromRGB(128, 0, 0),
- Color3.fromRGB(255, 192, 203),
- Color3.fromRGB(0, 128, 128),
- Color3.fromRGB(128, 0, 128),
- Color3.fromRGB(255, 255, 255),
- Color3.fromRGB(0, 0, 0),
- Color3.fromRGB(128, 128, 128),
- }
- -- الإطار الرئيسي
- local Frame = Instance.new("Frame")
- Frame.Size = UDim2.new(0, 200, 0, 50)
- Frame.Position = UDim2.new(0.5, -100, 0.1, 0)
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BackgroundTransparency = 0.5
- Frame.BorderSizePixel = 0
- Frame.AnchorPoint = Vector2.new(0.5, 0)
- Frame.Parent = ScreenGui
- -- حواف دائرية ناعمة
- local corner = Instance.new("UICorner")
- corner.CornerRadius = UDim.new(0, 15)
- corner.Parent = Frame
- -- تدرج الحد بـ 15 لون
- local uiStroke = Instance.new("UIStroke")
- uiStroke.Thickness = 2
- uiStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
- uiStroke.Parent = Frame
- -- تحديث اللون باستمرار
- task.spawn(function()
- while true do
- for _, color in ipairs(colors) do
- uiStroke.Color = color
- task.wait(0.15)
- end
- end
- end)
- -- النص
- local TextLabel = Instance.new("TextLabel")
- TextLabel.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Text = "👑تطوير تيم بلاك👑"
- TextLabel.TextColor3 = Color3.fromRGB(255, 215, 0) -- ذهبي
- TextLabel.TextScaled = true
- TextLabel.Font = Enum.Font.GothamBold
- TextLabel.Parent = Frame
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement