Advertisement
Kero99887

Untitled

Jun 13th, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. -- داخل LocalScript يوضع في StarterPlayerScripts أو StarterGui
  2.  
  3. local ScreenGui = Instance.new("ScreenGui", game.Players.LocalPlayer:WaitForChild("PlayerGui"))
  4. ScreenGui.Name = "TeamBlackPanel"
  5.  
  6. local colors = {
  7. Color3.fromRGB(255, 0, 0),
  8. Color3.fromRGB(255, 127, 0),
  9. Color3.fromRGB(255, 255, 0),
  10. Color3.fromRGB(0, 255, 0),
  11. Color3.fromRGB(0, 255, 255),
  12. Color3.fromRGB(0, 0, 255),
  13. Color3.fromRGB(139, 0, 255),
  14. Color3.fromRGB(255, 0, 255),
  15. Color3.fromRGB(128, 0, 0),
  16. Color3.fromRGB(255, 192, 203),
  17. Color3.fromRGB(0, 128, 128),
  18. Color3.fromRGB(128, 0, 128),
  19. Color3.fromRGB(255, 255, 255),
  20. Color3.fromRGB(0, 0, 0),
  21. Color3.fromRGB(128, 128, 128),
  22. }
  23.  
  24. -- الإطار الرئيسي
  25. local Frame = Instance.new("Frame")
  26. Frame.Size = UDim2.new(0, 200, 0, 50)
  27. Frame.Position = UDim2.new(0.5, -100, 0.1, 0)
  28. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  29. Frame.BackgroundTransparency = 0.5
  30. Frame.BorderSizePixel = 0
  31. Frame.AnchorPoint = Vector2.new(0.5, 0)
  32. Frame.Parent = ScreenGui
  33.  
  34. -- حواف دائرية ناعمة
  35. local corner = Instance.new("UICorner")
  36. corner.CornerRadius = UDim.new(0, 15)
  37. corner.Parent = Frame
  38.  
  39. -- تدرج الحد بـ 15 لون
  40. local uiStroke = Instance.new("UIStroke")
  41. uiStroke.Thickness = 2
  42. uiStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  43. uiStroke.Parent = Frame
  44.  
  45. -- تحديث اللون باستمرار
  46. task.spawn(function()
  47. while true do
  48. for _, color in ipairs(colors) do
  49. uiStroke.Color = color
  50. task.wait(0.15)
  51. end
  52. end
  53. end)
  54.  
  55. -- النص
  56. local TextLabel = Instance.new("TextLabel")
  57. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  58. TextLabel.BackgroundTransparency = 1
  59. TextLabel.Text = "👑تطوير تيم بلاك👑"
  60. TextLabel.TextColor3 = Color3.fromRGB(255, 215, 0) -- ذهبي
  61. TextLabel.TextScaled = true
  62. TextLabel.Font = Enum.Font.GothamBold
  63. TextLabel.Parent = Frame
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement