The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Lucky Blocks Battlegrounds script pastebin roblox
By Lucky Blocks Battlegrounds on 2024-09-19 08:00 am | Syntax: LUA | Views: 24



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