Advertisement
Guest User

LUCKY BLOCKS, ASSISTED WITH XCROSSY

a guest
Jan 21st, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. -- I DID NOT MAKE THE SCRIPTS JUST THE GUI!
  2.  
  3. --GUI BY RWLU
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local Credit = Instance.new("TextLabel")
  8. local OpenDBlock = Instance.new("TextButton")
  9. local OpenRBlock = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.Position = UDim2.new(0.00493522501, 0, 0.425061435, 0)
  16. Frame.Size = UDim2.new(0, 191, 0, 194)
  17. Frame.Style = Enum.FrameStyle.RobloxRound
  18.  
  19. TextLabel.Parent = Frame
  20. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  21. TextLabel.BackgroundTransparency = 1
  22. TextLabel.Position = UDim2.new(0.00523560122, 0, 0.0119760446, 0)
  23. TextLabel.Size = UDim2.new(0, 175, 0, 27)
  24. TextLabel.Font = Enum.Font.SourceSans
  25. TextLabel.Text = "LUCKY BLOCK Battlegrounds GUI"
  26. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  27. TextLabel.TextSize = 15
  28.  
  29. Credit.Name = "Credit"
  30. Credit.Parent = Frame
  31. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  32. Credit.BackgroundTransparency = 1
  33. Credit.Position = UDim2.new(-9.31322575e-10, 0, 0.832335353, 0)
  34. Credit.Size = UDim2.new(0, 175, 0, 27)
  35. Credit.Font = Enum.Font.SourceSans
  36. Credit.Text = "GUI BY: YouTube.com/rwlu"
  37. Credit.TextColor3 = Color3.new(1, 1, 1)
  38. Credit.TextSize = 15
  39.  
  40. OpenDBlock.Name = "OpenDBlock"
  41. OpenDBlock.Parent = ScreenGui
  42. OpenDBlock.BackgroundColor3 = Color3.new(3, 2, 1)
  43. OpenDBlock.Position = UDim2.new(0.00493522501, 0, 0.669287485, 0)
  44. OpenDBlock.Size = UDim2.new(2, 211, 69, 32)
  45. OpenDBlock.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  46. OpenDBlock.Font = Enum.Font.SourceSans
  47. OpenDBlock.Text = "Open diamond block"
  48. OpenDBlock.TextColor3 = Color3.new(0, 0, 0)
  49. OpenDBlock.TextSize = 14
  50.  
  51. OpenRBlock.Name = "OpenRBlock"
  52. OpenRBlock.Parent = ScreenGui
  53. OpenRBlock.BackgroundColor3 = Color3.new(1, 1, 1)
  54. OpenRBlock.Position = UDim2.new(0.00493522501, 0, 0.530712545, 0)
  55. OpenRBlock.Size = UDim2.new(0, 191, 0, 50)
  56. OpenRBlock.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  57. OpenRBlock.Font = Enum.Font.SourceSans
  58. OpenRBlock.Text = "Open rainbow block"
  59. OpenRBlock.TextColor3 = Color3.new(0, 0, 0)
  60. OpenRBlock.TextSize = 14
  61. -- Scripts:
  62. OpenDBlock.MouseButton1Click:Connect(function()
  63. game.ReplicatedStorage.SpawnDiamondBlock:FireServer()
  64. end)
  65.  
  66. OpenRBlock.MouseButton1Click:Connect(function()
  67. game.ReplicatedStorage.SpawnRainbowBlock:FireServer()
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement