Advertisement
JordanTGraves

Untitled

Jun 12th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local TextLabel = Instance.new("TextLabel")
  8. local ImageLabel = Instance.new("ImageLabel")
  9. local Background = Instance.new("Frame")
  10. local Noobbat = Instance.new("TextButton")
  11. local dex = Instance.new("TextButton")
  12. local star = Instance.new("TextButton")
  13. local CloseButton = Instance.new("TextButton")
  14. local GlossEffect = Instance.new("ImageLabel")
  15.  
  16. -- Properties
  17.  
  18. ScreenGui.Parent = game.StarterGui
  19.  
  20. TextLabel.Parent = ScreenGui
  21. TextLabel.Active = true
  22. TextLabel.BackgroundColor3 = Color3.new(0, 0, 1)
  23. TextLabel.BackgroundTransparency = 0.5
  24. TextLabel.BorderSizePixel = 0
  25. TextLabel.Draggable = true
  26. TextLabel.Position = UDim2.new(0.5, -200, 0.5, -100)
  27. TextLabel.Size = UDim2.new(0, 380, 0, 20)
  28. TextLabel.Font = Enum.Font.ArialBold
  29. TextLabel.Text = "Jordan's GUI"
  30. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  31. TextLabel.TextSize = 18
  32.  
  33. ImageLabel.Parent = TextLabel
  34. ImageLabel.BackgroundTransparency = 1
  35. ImageLabel.Size = UDim2.new(1, 0, 0.5, 0)
  36. ImageLabel.ZIndex = 2
  37. ImageLabel.Image = "rbxasset://textures/BWGradient.png"
  38. ImageLabel.ImageTransparency = 0.5
  39.  
  40. Background.Name = "Background"
  41. Background.Parent = TextLabel
  42. Background.BackgroundColor3 = Color3.new(0, 0, 0)
  43. Background.BackgroundTransparency = 0.30000001192093
  44. Background.BorderSizePixel = 0
  45. Background.Position = UDim2.new(0, 0, 0, 20)
  46. Background.Size = UDim2.new(0, 400, 0, 200)
  47.  
  48. Noobbat.Name = "Noobbat"
  49. Noobbat.Parent = Background
  50. Noobbat.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Noobbat.BackgroundTransparency = 1
  52. Noobbat.Size = UDim2.new(0, 200, 0, 50)
  53. Noobbat.Font = Enum.Font.SourceSans
  54. Noobbat.Text = "Noobbat"
  55. Noobbat.TextColor3 = Color3.new(1, 0.0235294, 0.0235294)
  56. Noobbat.TextSize = 20
  57.  
  58. dex.Name = "dex"
  59. dex.Parent = Background
  60. dex.BackgroundColor3 = Color3.new(1, 1, 1)
  61. dex.BackgroundTransparency = 1
  62. dex.Position = UDim2.new(0, 200, 0, 0)
  63. dex.Size = UDim2.new(0, 200, 0, 50)
  64. dex.Font = Enum.Font.SourceSans
  65. dex.TextColor3 = Color3.new(1, 0.0235294, 0.0235294)
  66. dex.TextSize = 20
  67.  
  68. star.Name = "star"
  69. star.Parent = Background
  70. star.BackgroundColor3 = Color3.new(1, 1, 1)
  71. star.BackgroundTransparency = 1
  72. star.Position = UDim2.new(0, 0, 0, 50)
  73. star.Size = UDim2.new(0, 200, 0, 50)
  74. star.Font = Enum.Font.SourceSans
  75. star.Text = "Star Glitcher"
  76. star.TextColor3 = Color3.new(1, 0.0235294, 0.0235294)
  77. star.TextSize = 20
  78.  
  79. CloseButton.Name = "CloseButton"
  80. CloseButton.Parent = TextLabel
  81. CloseButton.BackgroundColor3 = Color3.new(1, 0, 0)
  82. CloseButton.BackgroundTransparency = 0.5
  83. CloseButton.BorderSizePixel = 0
  84. CloseButton.Position = UDim2.new(0, 380, 0, 0)
  85. CloseButton.Size = UDim2.new(0, 20, 0, 20)
  86. CloseButton.Font = Enum.Font.ArialBold
  87. CloseButton.Text = "X"
  88. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  89. CloseButton.TextSize = 18
  90.  
  91. GlossEffect.Name = "GlossEffect"
  92. GlossEffect.Parent = CloseButton
  93. GlossEffect.BackgroundTransparency = 1
  94. GlossEffect.Size = UDim2.new(1, 0, 0.5, 0)
  95. GlossEffect.ZIndex = 2
  96. GlossEffect.Image = "rbxasset://textures/BWGradient.png"
  97. GlossEffect.ImageTransparency = 0.5
  98.  
  99. -- Scripts
  100.  
  101.  
  102. dex.MouseButton1Down:connect(function()
  103. print("Hi")
  104. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement