Advertisement
Plug_RBLX

MY FIRST GUI I MADE!!! YEY

Dec 10th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. -- Objects
  2.  
  3. local thing = Instance.new("ScreenGui")
  4. local TextLabel = Instance.new("TextLabel")
  5. local ImageLabel = Instance.new("ImageLabel")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7. local ImageLabel_2 = Instance.new("ImageLabel")
  8. local ImageLabel_3 = Instance.new("ImageLabel")
  9. local TextLabel_3 = Instance.new("TextLabel")
  10. local TextLabel_4 = Instance.new("TextLabel")
  11.  
  12. -- Properties
  13.  
  14. thing.Name = "thing"
  15. thing.Parent = game.Workspace
  16.  
  17. TextLabel.Parent = thing
  18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextLabel.BackgroundTransparency = 1
  20. TextLabel.BorderSizePixel = 0
  21. TextLabel.Size = UDim2.new(0, 400, 0, 30)
  22. TextLabel.Font = Enum.Font.SourceSans
  23. TextLabel.FontSize = Enum.FontSize.Size28
  24. TextLabel.Text = "join discord:"
  25. TextLabel.TextScaled = true
  26. TextLabel.TextSize = 27
  27. TextLabel.TextWrapped = true
  28.  
  29. ImageLabel.Parent = thing
  30. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  31. ImageLabel.Position = UDim2.new(0, 400, 0, 0)
  32. ImageLabel.Size = UDim2.new(0, 100, 0, 100)
  33. ImageLabel.Image = "rbxassetid://1223924245"
  34.  
  35. TextLabel_2.Parent = thing
  36. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  37. TextLabel_2.BackgroundTransparency = 1
  38. TextLabel_2.BorderSizePixel = 0
  39. TextLabel_2.Size = UDim2.new(0, 400, 0, 100)
  40. TextLabel_2.Font = Enum.Font.SourceSans
  41. TextLabel_2.FontSize = Enum.FontSize.Size28
  42. TextLabel_2.Text = "https://discord.gg/Qt39CTY"
  43. TextLabel_2.TextColor3 = Color3.new(0.792157, 0.635294, 0)
  44. TextLabel_2.TextSize = 27
  45.  
  46. ImageLabel_2.Parent = thing
  47. ImageLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  48. ImageLabel_2.BackgroundTransparency = 1
  49. ImageLabel_2.Position = UDim2.new(0, 330, 0, 35)
  50. ImageLabel_2.Size = UDim2.new(0, 30, 0, 30)
  51. ImageLabel_2.Image = "rbxassetid://1234488026"
  52.  
  53. ImageLabel_3.Parent = thing
  54. ImageLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  55. ImageLabel_3.BackgroundTransparency = 1
  56. ImageLabel_3.Position = UDim2.new(0, 40, 0, 35)
  57. ImageLabel_3.Size = UDim2.new(0, 30, 0, 30)
  58. ImageLabel_3.Image = "rbxassetid://1234488026"
  59.  
  60. TextLabel_3.Parent = thing
  61. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  62. TextLabel_3.BackgroundTransparency = 1
  63. TextLabel_3.BorderSizePixel = 0
  64. TextLabel_3.Position = UDim2.new(0, 0, 0, 60)
  65. TextLabel_3.Size = UDim2.new(0, 400, 0, 30)
  66. TextLabel_3.Font = Enum.Font.Arcade
  67. TextLabel_3.FontSize = Enum.FontSize.Size18
  68. TextLabel_3.Text = "be active buddy!"
  69. TextLabel_3.TextScaled = true
  70. TextLabel_3.TextSize = 16
  71. TextLabel_3.TextWrapped = true
  72.  
  73. TextLabel_4.Parent = thing
  74. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  75. TextLabel_4.BackgroundTransparency = 1
  76. TextLabel_4.BorderSizePixel = 0
  77. TextLabel_4.Position = UDim2.new(0, 150, 0, 60)
  78. TextLabel_4.Rotation = 450
  79. TextLabel_4.Size = UDim2.new(0, 400, 0, 30)
  80. TextLabel_4.Font = Enum.Font.Cartoon
  81. TextLabel_4.FontSize = Enum.FontSize.Size18
  82. TextLabel_4.Text = ":D"
  83. TextLabel_4.TextColor3 = Color3.new(1, 0, 0.0156863)
  84. TextLabel_4.TextScaled = true
  85. TextLabel_4.TextSize = 16
  86. TextLabel_4.TextWrapped = true
  87. wait(1)
  88. gui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  89. wait(1)
  90. text = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.ScreenGui)
  91. text.Text = "no :Dy"
  92. text.Size = UDim2.new(0,200, 0,80)
  93. text.Position = UDim2.new(0,0, 0,300)
  94.  
  95. function succ()
  96. local lele = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  97. lele.SoundId = "http://roblox.com/asset?id=323901968"
  98. lele.Volume = 1
  99. lele.EmitterSize = 1000
  100. lele:Play()
  101. end
  102. text.MouseButton1Click:connect(succ)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement