Advertisement
Guest User

Project Beatdown Script

a guest
Dec 5th, 2021
22,497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.52 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local GUI = Instance.new("TextLabel")
  4. local Pizza = Instance.new("TextButton")
  5. local Dura = Instance.new("TextButton")
  6. local AttSpeedFarm = Instance.new("TextButton")
  7. local close = Instance.new("TextButton")
  8. local openmain = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. main.Name = "main"
  14. main.Parent = ScreenGui
  15. main.BackgroundColor3 = Color3.fromRGB(16, 16, 16)
  16. main.Position = UDim2.new(0.323336452, 0, 0.374501944, 0)
  17. main.Size = UDim2.new(0, 259, 0, 194)
  18. main.Visible = false
  19. main.Active = true
  20. main.Draggable = true
  21.  
  22. GUI.Name = "GUI"
  23. GUI.Parent = main
  24. GUI.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  25. GUI.Size = UDim2.new(0, 259, 0, 29)
  26. GUI.Font = Enum.Font.GothamBold
  27. GUI.Text = "Project Beatdown Gui"
  28. GUI.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. GUI.TextSize = 14.000
  30.  
  31. Pizza.Name = "Pizza"
  32. Pizza.Parent = main
  33. Pizza.BackgroundColor3 = Color3.fromRGB(170, 255, 255)
  34. Pizza.Position = UDim2.new(0.065637067, 0, 0.231958762, 0)
  35. Pizza.Size = UDim2.new(0, 81, 0, 35)
  36. Pizza.Font = Enum.Font.SciFi
  37. Pizza.Text = "Pizza Farm"
  38. Pizza.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. Pizza.TextScaled = true
  40. Pizza.TextSize = 10.000
  41. Pizza.TextWrapped = true
  42. Pizza.MouseButton1Down:connect(function()
  43. _G.MissionType = "Pizza" -- Pizza or Mail
  44.  
  45. loadstring(game:HttpGet(('https://pastebin.com/raw/HGvTt4Ef')))()
  46. end)
  47.  
  48. Dura.Name = "Dura"
  49. Dura.Parent = main
  50. Dura.BackgroundColor3 = Color3.fromRGB(170, 255, 255)
  51. Dura.Position = UDim2.new(0.532818556, 0, 0.231958762, 0)
  52. Dura.Size = UDim2.new(0, 81, 0, 35)
  53. Dura.Font = Enum.Font.SourceSans
  54. Dura.Text = "Dura Farm"
  55. Dura.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. Dura.TextSize = 14.000
  57. Dura.MouseButton1Down:connect(function()
  58. _G.on = true
  59.  
  60.  
  61. loadstring(game:HttpGet("https://pastebin.com/raw/ZL2jVRCy",true))()
  62. end)
  63.  
  64. AttSpeedFarm.Name = "Att Speed Farm"
  65. AttSpeedFarm.Parent = main
  66. AttSpeedFarm.BackgroundColor3 = Color3.fromRGB(170, 255, 255)
  67. AttSpeedFarm.Position = UDim2.new(0.065637067, 0, 0.608247399, 0)
  68. AttSpeedFarm.Size = UDim2.new(0, 81, 0, 35)
  69. AttSpeedFarm.Font = Enum.Font.SourceSans
  70. AttSpeedFarm.Text = "Att Speed Farm"
  71. AttSpeedFarm.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. AttSpeedFarm.TextSize = 14.000
  73. AttSpeedFarm.MouseButton1Down:connect(function()
  74. _G.on = true
  75.  
  76.  
  77. loadstring(game:HttpGet("https://pastebin.com/raw/1Bd5486L",true))()
  78. end)
  79.  
  80. close.Name = "close"
  81. close.Parent = main
  82. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  83. close.Position = UDim2.new(0.891891897, 0, 0, 0)
  84. close.Size = UDim2.new(0, 28, 0, 29)
  85. close.Font = Enum.Font.GothamBold
  86. close.Text = "X"
  87. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  88. close.TextScaled = true
  89. close.TextSize = 14.000
  90. close.TextWrapped = true
  91. close.MouseButton1Down:connect(function()
  92. main.Visible = true
  93. openmain.Visible = true
  94. end)
  95.  
  96. openmain.Name = "open main"
  97. openmain.Parent = ScreenGui
  98. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  99. openmain.Position = UDim2.new(0, 0, 0.412350595, 0)
  100. openmain.Size = UDim2.new(0, 86, 0, 25)
  101. openmain.Active = true
  102. openmain.Draggable = true
  103.  
  104. open.Name = "open"
  105.  
  106. open.Parent = openmain
  107. open.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  108. open.Size = UDim2.new(0, 86, 0, 25)
  109. open.Font = Enum.Font.GothamBold
  110. open.Text = "OPEN"
  111. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  112. open.TextScaled = true
  113. open.TextSize = 14.000
  114. open.TextWrapped = true
  115. open.MouseButton1Down:connect(function()
  116. openmain.Visible = false
  117. main.Visible = true
  118. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement