Advertisement
GoldCraftingHD

Untitled

Jul 28th, 2021
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local YouTubeGUI = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local YouTubeLabel = Instance.new("TextLabel")
  9. local MadeByxGoldgamer2j = Instance.new("TextLabel")
  10. local TextBox = Instance.new("TextBox")
  11.  
  12. --Properties:
  13.  
  14. YouTubeGUI.Name = "YouTubeGUI"
  15. YouTubeGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. YouTubeGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Frame.Parent = YouTubeGUI
  19. Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  20. Frame.BorderColor3 = Color3.fromRGB(226, 226, 226)
  21. Frame.BorderSizePixel = 2
  22. Frame.Position = UDim2.new(0, 0, 0.319628656, 0)
  23. Frame.Size = UDim2.new(0, 529, 0, 294)
  24.  
  25. YouTubeLabel.Name = "YouTubeLabel"
  26. YouTubeLabel.Parent = Frame
  27. YouTubeLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  28. YouTubeLabel.BorderColor3 = Color3.fromRGB(255, 255, 255)
  29. YouTubeLabel.BorderSizePixel = 2
  30. YouTubeLabel.Size = UDim2.new(0, 513, 0, 50)
  31. YouTubeLabel.Font = Enum.Font.SourceSans
  32. YouTubeLabel.Text = "YouTubeGUI"
  33. YouTubeLabel.TextColor3 = Color3.fromRGB(236, 236, 236)
  34. YouTubeLabel.TextScaled = true
  35. YouTubeLabel.TextSize = 1.000
  36. YouTubeLabel.TextWrapped = true
  37.  
  38. MadeByxGoldgamer2j.Name = "MadeByxGoldgamer2j"
  39. MadeByxGoldgamer2j.Parent = Frame
  40. MadeByxGoldgamer2j.BackgroundColor3 = Color3.fromRGB(152, 152, 152)
  41. MadeByxGoldgamer2j.BorderColor3 = Color3.fromRGB(229, 229, 229)
  42. MadeByxGoldgamer2j.BorderSizePixel = 2
  43. MadeByxGoldgamer2j.Position = UDim2.new(0, 0, 0.829931974, 0)
  44. MadeByxGoldgamer2j.Size = UDim2.new(0, 513, 0, 50)
  45. MadeByxGoldgamer2j.Font = Enum.Font.SourceSans
  46. MadeByxGoldgamer2j.Text = "Made By xGoldgamer2j"
  47. MadeByxGoldgamer2j.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. MadeByxGoldgamer2j.TextSize = 24.000
  49.  
  50. TextBox.Parent = Frame
  51. TextBox.BackgroundColor3 = Color3.fromRGB(212, 212, 212)
  52. TextBox.Position = UDim2.new(0.0662768036, 0, 0.21768707, 0)
  53. TextBox.Size = UDim2.new(0, 445, 0, 166)
  54. TextBox.Font = Enum.Font.SourceSans
  55. TextBox.Text = ""
  56. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  57. TextBox.TextSize = 18.000
  58. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  59. TextBox.TextYAlignment = Enum.TextYAlignment.Top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement