Advertisement
0OF_RUSSIA

Lucky Block inf blocks

Jan 26th, 2022
992
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. --GUI BY Paothbch
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local Credit = Instance.new("TextLabel")
  6. local OpenDBlock = Instance.new("TextButton")
  7. local OpenRBlock = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10.  
  11. Frame.Parent = ScreenGui
  12. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  13. Frame.Position = UDim2.new(0.00493522501, 0, 0.425061435, 0)
  14. Frame.Size = UDim2.new(0, 191, 0, 194)
  15. Frame.Style = Enum.FrameStyle.RobloxRound
  16.  
  17. TextLabel.Parent = Frame
  18. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextLabel.BackgroundTransparency = 1
  20. TextLabel.Position = UDim2.new(0.00523560122, 0, 0.0119760446, 0)
  21. TextLabel.Size = UDim2.new(0, 175, 0, 27)
  22. TextLabel.Font = Enum.Font.SourceSans
  23. TextLabel.Text = "LUCKY BLOCK Battlegrounds GUI"
  24. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  25. TextLabel.TextSize = 15
  26.  
  27. Credit.Name = "Credit"
  28. Credit.Parent = Frame
  29. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  30. Credit.BackgroundTransparency = 1
  31. Credit.Position = UDim2.new(-9.31322575e-10, 0, 0.832335353, 0)
  32. Credit.Size = UDim2.new(0, 175, 0, 27)
  33. Credit.Font = Enum.Font.SourceSans
  34. Credit.Text = "GUI BY: YouTube.com/Paothbch"
  35. Credit.TextColor3 = Color3.new(1, 1, 1)
  36. Credit.TextSize = 15
  37.  
  38. OpenDBlock.Name = "OpenDBlock"
  39. OpenDBlock.Parent = ScreenGui
  40. OpenDBlock.BackgroundColor3 = Color3.new(1, 1, 1)
  41. OpenDBlock.Position = UDim2.new(0.00493522501, 0, 0.469287485, 0)
  42. OpenDBlock.Size = UDim2.new(0, 191, 0, 50)
  43. OpenDBlock.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  44. OpenDBlock.Font = Enum.Font.SourceSans
  45. OpenDBlock.Text = "Open Galaxy block"
  46. OpenDBlock.TextColor3 = Color3.new(0, 0, 0)
  47. OpenDBlock.TextSize = 14
  48. -- Scripts:
  49. OpenDBlock.MouseButton1Click:Connect(function()
  50. game.ReplicatedStorage.SpawnGalaxyBlock:FireServer()
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement