Advertisement
ethanbrendagragg123

Hello world!

Feb 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local HARDER = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local Title_2 = Instance.new("Frame")
  9. local title2 = Instance.new("TextBox")
  10. local credits = Instance.new("TextBox")
  11. local BYE = Instance.new("TextButton")
  12. local exebutton = Instance.new("TextButton")
  13. local TextButton = Instance.new("TextButton")
  14.  
  15. -- Properties
  16.  
  17. HARDER.Name = "HARDER"
  18. HARDER.Parent = game.Players.LocalPlayer.PlayerGui
  19.  
  20. MainFrame.Name = "MainFrame"
  21. MainFrame.Parent = HARDER
  22. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  23. MainFrame.BackgroundTransparency = 0.5
  24. MainFrame.Draggable = true
  25. MainFrame.Position = UDim2.new(0, 161, 0, 47)
  26. MainFrame.Selectable = true
  27. MainFrame.Size = UDim2.new(0, 461, 0, 309)
  28. MainFrame.Visible = false
  29.  
  30. Title_2.Name = "Title"
  31. Title_2.Parent = MainFrame
  32. Title_2.BackgroundColor3 = Color3.new(0, 0, 0)
  33. Title_2.Size = UDim2.new(0, 461, 0, 43)
  34.  
  35. title2.Name = "title 2"
  36. title2.Parent = Title_2
  37. title2.BackgroundColor3 = Color3.new(0, 0, 0)
  38. title2.BackgroundTransparency = 0.5
  39. title2.Size = UDim2.new(0, 461, 0, 43)
  40. title2.Font = Enum.Font.SourceSansBold
  41. title2.Text = "HARDER"
  42. title2.TextColor3 = Color3.new(1, 0, 0)
  43. title2.TextScaled = true
  44. title2.TextSize = 14
  45. title2.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
  46. title2.TextWrapped = true
  47.  
  48. credits.Name = "credits"
  49. credits.Parent = Title_2
  50. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  51. credits.BackgroundTransparency = 0.5
  52. credits.Position = UDim2.new(0, 0, 0, 282)
  53. credits.Size = UDim2.new(0, 179, 0, 26)
  54. credits.Font = Enum.Font.SourceSansBold
  55. credits.Text = "Made By ETHANdagama"
  56. credits.TextColor3 = Color3.new(1, 0, 0)
  57. credits.TextScaled = true
  58. credits.TextSize = 14
  59. credits.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
  60. credits.TextWrapped = true
  61.  
  62. BYE.Name = "BYE"
  63. BYE.Parent = MainFrame
  64. BYE.BackgroundColor3 = Color3.new(0, 0, 0)
  65. BYE.BorderColor3 = Color3.new(0.666667, 0, 0)
  66. BYE.Position = UDim2.new(0, 426, 0, 0)
  67. BYE.Size = UDim2.new(0, 35, 0, 41)
  68. BYE.Font = Enum.Font.SourceSans
  69. BYE.Text = "X"
  70. BYE.TextColor3 = Color3.new(1, 0, 0)
  71. BYE.TextSize = 20
  72. BYE.TextStrokeColor3 = Color3.new(1, 0, 0)
  73.  
  74. exebutton.Name = "exebutton"
  75. exebutton.Parent = MainFrame
  76. exebutton.BackgroundColor3 = Color3.new(0, 0, 0)
  77. exebutton.BorderColor3 = Color3.new(1, 0, 0)
  78. exebutton.Position = UDim2.new(0, 0, 0, 130)
  79. exebutton.Size = UDim2.new(0, 200, 0, 50)
  80. exebutton.Font = Enum.Font.SourceSans
  81. exebutton.Text = "Exacutor"
  82. exebutton.TextColor3 = Color3.new(1, 0, 0)
  83. exebutton.TextSize = 25
  84. exebutton.TextStrokeColor3 = Color3.new(1, 0, 0)
  85.  
  86. TextButton.Parent = MainFrame
  87. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  88. TextButton.BorderColor3 = Color3.new(0.666667, 0, 0)
  89. TextButton.Position = UDim2.new(0, 261, 0, 130)
  90. TextButton.Size = UDim2.new(0, 200, 0, 50)
  91. TextButton.Font = Enum.Font.SourceSans
  92. TextButton.TextColor3 = Color3.new(1, 0, 0)
  93. TextButton.TextSize = 20
  94. TextButton.TextStrokeColor3 = Color3.new(1, 0, 0)
  95.  
  96. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement