Advertisement
Adel987654321

Lucky Block Gui

Dec 5th, 2019
974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.81 KB | None | 0 0
  1. local LuckyBlock = Instance.new("ScreenGui")
  2. local MainGui = Instance.new("Frame")
  3. local LuckyBlockBattlegroundsGui = Instance.new("TextLabel")
  4. local Close = Instance.new("TextButton")
  5. local Normal = Instance.new("TextButton")
  6. local Super = Instance.new("TextButton")
  7. local Diamond = Instance.new("TextButton")
  8. local Rainbow = Instance.new("TextButton")
  9. local MakeBy = Instance.new("TextLabel")
  10. local OpenGui = Instance.new("Frame")
  11. local Open = Instance.new("TextButton")
  12. --Properties:
  13. LuckyBlock.Name = "LuckyBlock"
  14. LuckyBlock.Parent = game.CoreGui
  15.  
  16. MainGui.Active = true
  17. MainGui.Draggable = true
  18.  
  19. MainGui.Name = "MainGui"
  20. MainGui.Parent = LuckyBlock
  21. MainGui.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  22. MainGui.BorderColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  23. MainGui.Position = UDim2.new(0.318219304, 0, 0.229447842, 0)
  24. MainGui.Size = UDim2.new(0, 440, 0, 440)
  25. MainGui.Visible = false
  26.  
  27. LuckyBlockBattlegroundsGui.Name = "Lucky Block Battlegrounds Gui"
  28. LuckyBlockBattlegroundsGui.Parent = MainGui
  29. LuckyBlockBattlegroundsGui.BackgroundColor3 = Color3.new(0, 0, 0)
  30. LuckyBlockBattlegroundsGui.BorderColor3 = Color3.new(0, 0, 0)
  31. LuckyBlockBattlegroundsGui.Size = UDim2.new(0, 440, 0, 50)
  32. LuckyBlockBattlegroundsGui.Text = " Lucky Block Battlegrounds Gui"
  33. LuckyBlockBattlegroundsGui.TextColor3 = Color3.new(1, 1, 1)
  34. LuckyBlockBattlegroundsGui.TextSize = 15
  35. LuckyBlockBattlegroundsGui.TextWrapped = true
  36. LuckyBlockBattlegroundsGui.TextXAlignment = Enum.TextXAlignment.Left
  37.  
  38. Close.Name = "Close"
  39. Close.Parent = MainGui
  40. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  41. Close.BorderColor3 = Color3.new(0, 0, 0)
  42. Close.Position = UDim2.new(0.861363649, 0, 0, 0)
  43. Close.Size = UDim2.new(0, 61, 0, 50)
  44. Close.Font = Enum.Font.Garamond
  45. Close.Text = "X"
  46. Close.TextColor3 = Color3.new(1, 1, 1)
  47. Close.TextSize = 25
  48. Close.TextWrapped = true
  49. Close.MouseButton1Click:connect(function()
  50. MainGui.Visible = false
  51. OpenGui.Visible = true
  52. end)
  53.  
  54. Normal.Name = "Normal"
  55. Normal.Parent = MainGui
  56. Normal.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Normal.Position = UDim2.new(0, 0, 0.265909106, 0)
  58. Normal.Size = UDim2.new(0, 200, 0, 50)
  59. Normal.Font = Enum.Font.Garamond
  60. Normal.Text = "Lucky Block Normal (Patched)"
  61. Normal.TextColor3 = Color3.new(0, 0, 0)
  62. Normal.TextSize = 25
  63. Normal.TextWrapped = true
  64.  
  65. Super.Name = "Super"
  66. Super.Parent = MainGui
  67. Super.BackgroundColor3 = Color3.new(1, 1, 1)
  68. Super.Position = UDim2.new(0.545454562, 0, 0.265909106, 0)
  69. Super.Size = UDim2.new(0, 200, 0, 50)
  70. Super.Font = Enum.Font.Garamond
  71. Super.Text = "Lucky Block Super (Patched)"
  72. Super.TextColor3 = Color3.new(0, 0, 0)
  73. Super.TextSize = 25
  74. Super.TextWrapped = true
  75.  
  76. Diamond.Name = "Diamond"
  77. Diamond.Parent = MainGui
  78. Diamond.BackgroundColor3 = Color3.new(1, 1, 1)
  79. Diamond.Position = UDim2.new(0, 0, 0.618181825, 0)
  80. Diamond.Size = UDim2.new(0, 200, 0, 50)
  81. Diamond.Font = Enum.Font.Garamond
  82. Diamond.Text = "Lucky Block Diamond"
  83. Diamond.TextColor3 = Color3.new(0, 0, 0)
  84. Diamond.TextSize = 25
  85. Diamond.TextWrapped = true
  86. Rainbow.MouseButton1Click:connect(function()
  87. game.ReplicatedStorage.SpawnDiamondBlock:FireServer()
  88.  
  89. print("Working")
  90. end)
  91.  
  92. Rainbow.Name = "Rainbow"
  93. Rainbow.Parent = MainGui
  94. Rainbow.BackgroundColor3 = Color3.new(1, 1, 1)
  95. Rainbow.Position = UDim2.new(0.545454562, 0, 0.618181825, 0)
  96. Rainbow.Size = UDim2.new(0, 200, 0, 50)
  97. Rainbow.Font = Enum.Font.Garamond
  98. Rainbow.Text = "Lucky Block Rainbow"
  99. Rainbow.TextColor3 = Color3.new(0, 0, 0)
  100. Rainbow.TextSize = 25
  101. Rainbow.TextWrapped = true
  102. Rainbow.MouseButton1Click:connect(function()
  103. game.ReplicatedStorage.SpawnRainbowBlock:FireServer()
  104.  
  105. print("Working")
  106. end)
  107.  
  108. MakeBy.Name = "Make By"
  109. MakeBy.Parent = MainGui
  110. MakeBy.BackgroundColor3 = Color3.new(0, 0, 0)
  111. MakeBy.BorderColor3 = Color3.new(0, 0, 0)
  112. MakeBy.Position = UDim2.new(0, 0, 0.886363626, 0)
  113. MakeBy.Size = UDim2.new(0, 440, 0, 50)
  114. MakeBy.Font = Enum.Font.SourceSans
  115. MakeBy.Text = "Make by Hi?uYoutuber"
  116. MakeBy.TextColor3 = Color3.new(1, 1, 1)
  117. MakeBy.TextSize = 20
  118. MakeBy.TextStrokeColor3 = Color3.new(1, 1, 1)
  119.  
  120. OpenGui.Name = "OpenGui"
  121. OpenGui.Parent = LuckyBlock
  122. OpenGui.Active = true
  123. OpenGui.BackgroundColor3 = Color3.new(0, 0, 0)
  124. OpenGui.BorderColor3 = Color3.new(0, 0, 0)
  125. OpenGui.Position = UDim2.new(0, 0, 0.639263809, 0)
  126. OpenGui.Size = UDim2.new(0, 108, 0, 38)
  127.  
  128. Open.Name = "Open"
  129. Open.Parent = OpenGui
  130. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  131. Open.BorderColor3 = Color3.new(0, 0, 0)
  132. Open.Position = UDim2.new(0, 0, 0.184210524, 0)
  133. Open.Size = UDim2.new(0, 96, 0, 24)
  134. Open.Font = Enum.Font.SciFi
  135. Open.Text = "Open"
  136. Open.TextColor3 = Color3.new(1, 1, 1)
  137. Open.TextSize = 20
  138. Open.TextStrokeColor3 = Color3.new(1, 1, 1)
  139. Open.MouseButton1Click:connect(function()
  140. MainGui.Visible = true
  141. OpenGui.Visible = false
  142. end)
  143.  
  144. print("Working")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement