Advertisement
RoGhoulXD

Ywa

Jan 30th, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local Name = Instance.new("TextLabel")
  9. local Test1 = Instance.new("TextButton")
  10. local Test2 = Instance.new("TextButton")
  11. local Test3 = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. main.Name = "main"
  19. main.Parent = ScreenGui
  20. main.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
  21. main.BorderColor3 = Color3.fromRGB(255, 0, 255)
  22. main.BorderSizePixel = 5
  23. main.Position = UDim2.new(0.0105152475, 0, 0.0844793692, 0)
  24. main.Size = UDim2.new(0, 294, 0, 372)
  25.  
  26. Name.Name = "Name"
  27. Name.Parent = main
  28. Name.BackgroundColor3 = Color3.fromRGB(85, 0, 255)
  29. Name.BorderColor3 = Color3.fromRGB(255, 0, 255)
  30. Name.BorderSizePixel = 5
  31. Name.Size = UDim2.new(0, 294, 0, 50)
  32. Name.Font = Enum.Font.SourceSans
  33. Name.Text = "RoGhoul Test?"
  34. Name.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. Name.TextScaled = true
  36. Name.TextSize = 14.000
  37. Name.TextWrapped = true
  38.  
  39. Test1.Name = "Test1"
  40. Test1.Parent = main
  41. Test1.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  42. Test1.BorderSizePixel = 0
  43. Test1.Position = UDim2.new(0.159863949, 0, 0.225806445, 0)
  44. Test1.Size = UDim2.new(0, 200, 0, 50)
  45. Test1.Font = Enum.Font.Nunito
  46. Test1.Text = "Kill All"
  47. Test1.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. Test1.TextScaled = true
  49. Test1.TextSize = 14.000
  50. Test1.TextWrapped = true
  51.  
  52. Test2.Name = "Test2"
  53. Test2.Parent = main
  54. Test2.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  55. Test2.BorderSizePixel = 0
  56. Test2.Position = UDim2.new(0.159863949, 0, 0.5, 0)
  57. Test2.Size = UDim2.new(0, 200, 0, 50)
  58. Test2.Font = Enum.Font.Nunito
  59. Test2.Text = "Just Kidding"
  60. Test2.TextColor3 = Color3.fromRGB(255, 255, 255)
  61. Test2.TextScaled = true
  62. Test2.TextSize = 14.000
  63. Test2.TextWrapped = true
  64.  
  65. Test3.Name = "Test3"
  66. Test3.Parent = main
  67. Test3.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  68. Test3.BorderSizePixel = 0
  69. Test3.Position = UDim2.new(0.159863949, 0, 0.766129017, 0)
  70. Test3.Size = UDim2.new(0, 200, 0, 50)
  71. Test3.Font = Enum.Font.Nunito
  72. Test3.Text = "Hahaha"
  73. Test3.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. Test3.TextScaled = true
  75. Test3.TextSize = 14.000
  76. Test3.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement