Advertisement
Plug_RBLX

HenloMyGui test

Dec 11th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. -- Objects
  2.  
  3. local HenloMyGui = Instance.new("ScreenGui")
  4. local ScrollingFrame = Instance.new("ScrollingFrame")
  5. local _1 = Instance.new("TextButton")
  6. local TextLabel = Instance.new("TextLabel")
  7. local Version = Instance.new("TextLabel")
  8.  
  9. -- Properties
  10.  
  11. HenloMyGui.Name = "HenloMyGui"
  12. HenloMyGui.Parent = game.Workspace
  13.  
  14. ScrollingFrame.Parent = HenloMyGui
  15. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.419608, 0.427451)
  16. ScrollingFrame.Position = UDim2.new(0, 0, 0, 100)
  17. ScrollingFrame.Size = UDim2.new(0, 200, 0, 400)
  18. ScrollingFrame.ScrollBarThickness = 15
  19.  
  20. _1.Name = "1"
  21. _1.Parent = ScrollingFrame
  22. _1.BackgroundColor3 = Color3.new(1, 1, 1)
  23. _1.Position = UDim2.new(0, 0, 0, 60)
  24. _1.Size = UDim2.new(0, 200, 0, 50)
  25. _1.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  26. _1.Font = Enum.Font.SourceSans
  27. _1.FontSize = Enum.FontSize.Size14
  28. _1.Text = "Discord Link"
  29. _1.TextColor3 = Color3.new(0, 1, 0.54902)
  30. _1.TextSize = 14
  31.  
  32. TextLabel.Parent = HenloMyGui
  33. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  34. TextLabel.BackgroundTransparency = 1
  35. TextLabel.Position = UDim2.new(0, 0, 0, 100)
  36. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  37. TextLabel.Font = Enum.Font.SourceSans
  38. TextLabel.FontSize = Enum.FontSize.Size36
  39. TextLabel.Text = "HenloMyGui"
  40. TextLabel.TextColor3 = Color3.new(1, 0, 0.0156863)
  41. TextLabel.TextSize = 33
  42.  
  43. Version.Name = "Version"
  44. Version.Parent = HenloMyGui
  45. Version.BackgroundColor3 = Color3.new(1, 1, 1)
  46. Version.BackgroundTransparency = 1
  47. Version.Position = UDim2.new(0, 0, 0, 120)
  48. Version.Size = UDim2.new(0, 200, 0, 50)
  49. Version.Font = Enum.Font.SourceSans
  50. Version.FontSize = Enum.FontSize.Size28
  51. Version.Text = "V1.1 Raw alpha"
  52. Version.TextColor3 = Color3.new(0.968628, 0.494118, 1)
  53. Version.TextSize = 27
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement