Advertisement
GoldCraftingHD

YouTubeTextBox

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