Advertisement
bivakhiem114

Lucky Block Gui

Mar 7th, 2019
19,881
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local LuckyBlock = Instance.new("ScreenGui")
  5. local frame = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local credits = Instance.new("TextLabel")
  8. local Rainbow = Instance.new("TextButton")
  9. local Diamond = Instance.new("TextButton")
  10. --Properties:
  11. LuckyBlock.Name = "Lucky Block"
  12. LuckyBlock.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. frame.Name = "frame"
  15. frame.Parent = LuckyBlock
  16. frame.BackgroundColor3 = Color3.new(0, 0, 1)
  17. frame.Position = UDim2.new(0.0652394891, 0, 0.212209299, 0)
  18. frame.Size = UDim2.new(0, 293, 0, 329)
  19.  
  20. title.Name = "title"
  21. title.Parent = frame
  22. title.BackgroundColor3 = Color3.new(1, 0, 0)
  23. title.Position = UDim2.new(0.156996593, 0, 0, 0)
  24. title.Size = UDim2.new(0, 200, 0, 50)
  25. title.Font = Enum.Font.SourceSans
  26. title.Text = "Khiêm Channel"
  27. title.TextColor3 = Color3.new(0, 0, 0)
  28. title.TextSize = 14
  29.  
  30. credits.Name = "credits"
  31. credits.Parent = frame
  32. credits.BackgroundColor3 = Color3.new(1, 0, 0)
  33. credits.Position = UDim2.new(0.156996593, 0, 0.848024309, 0)
  34. credits.Size = UDim2.new(0, 200, 0, 50)
  35. credits.Font = Enum.Font.SourceSans
  36. credits.Text = "pls subcribe my channel"
  37. credits.TextColor3 = Color3.new(0, 0, 0)
  38. credits.TextSize = 14
  39.  
  40. Rainbow.Name = "Rainbow"
  41. Rainbow.Parent = frame
  42. Rainbow.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  43. Rainbow.Position = UDim2.new(0.156996593, 0, 0.267477214, 0)
  44. Rainbow.Size = UDim2.new(0, 200, 0, 50)
  45. Rainbow.Font = Enum.Font.SourceSans
  46. Rainbow.Text = "Rainbow Block"
  47. Rainbow.TextColor3 = Color3.new(0, 0, 0)
  48. Rainbow.TextSize = 14
  49.  
  50. Diamond.Name = "Diamond"
  51. Diamond.Parent = frame
  52. Diamond.BackgroundColor3 = Color3.new(0, 1, 1)
  53. Diamond.Position = UDim2.new(0.156996593, 0, 0.510638297, 0)
  54. Diamond.Size = UDim2.new(0, 200, 0, 50)
  55. Diamond.Font = Enum.Font.SourceSans
  56. Diamond.Text = "Diamond Block"
  57. Diamond.TextColor3 = Color3.new(0, 0, 0)
  58. Diamond.TextSize = 14
  59. -- Scripts:
  60. Diamond.MouseButton1Click:Connect(function()
  61. game.ReplicatedStorage.SpawnDiamondBlock:FireServer()
  62. end)
  63.  
  64. Rainbow.MouseButton1Click:Connect(function()
  65. game.ReplicatedStorage.SpawnRainbowBlock:FireServer()
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement