Advertisement
Guest User

Drop BALL

a guest
Jun 15th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local DropBallGUI = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local DropBall = Instance.new("TextButton")
  8. --Properties:
  9. DropBallGUI.Name = "DropBallGUI"
  10. DropBallGUI.Parent = game.CoreGui
  11. DropBallGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = DropBallGUI
  14. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  15. Frame.BackgroundTransparency = 0.5
  16. Frame.BorderColor3 = Color3.new(1, 1, 1)
  17. Frame.BorderSizePixel = 4
  18. Frame.Position = UDim2.new(0, 0, 0.0658105612, 0)
  19. Frame.Size = UDim2.new(0, 237, 0, 21)
  20. Frame.Active = true
  21. Frame.Draggable = true
  22.  
  23. TextLabel.Parent = Frame
  24. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  25. TextLabel.BackgroundTransparency = 0.30000001192093
  26. TextLabel.BorderColor3 = Color3.new(1, 1, 1)
  27. TextLabel.BorderSizePixel = 2
  28. TextLabel.Position = UDim2.new(0, 0, -1.85714281, 0)
  29. TextLabel.Size = UDim2.new(0, 218, 0, 31)
  30. TextLabel.Font = Enum.Font.GothamBlack
  31. TextLabel.Text = "THIS GUI WAS MADE BY TURNINGGLOBE"
  32. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  33. TextLabel.TextSize = 10
  34.  
  35. DropBall.Name = "DropBall"
  36. DropBall.Parent = Frame
  37. DropBall.BackgroundColor3 = Color3.new(0, 0, 0)
  38. DropBall.BackgroundTransparency = 0.30000001192093
  39. DropBall.BorderColor3 = Color3.new(1, 1, 1)
  40. DropBall.BorderSizePixel = 3
  41. DropBall.Position = UDim2.new(0, 0, 1.28571498, 0)
  42. DropBall.Size = UDim2.new(0, 141, 0, 29)
  43. DropBall.Font = Enum.Font.GothamBlack
  44. DropBall.Text = "DROP"
  45. DropBall.TextColor3 = Color3.new(1, 1, 1)
  46. DropBall.TextSize = 14
  47. DropBall.TextWrapped = true
  48.  
  49. DropBall.MouseButton1Down:connect(function()
  50. --Just Press Execute....
  51. local descendants = game.workspace:GetDescendants()
  52.  
  53. for index, descendants in pairs(descendants) do
  54. if descendants .Name == "Basketball" then
  55. descendants.block:FireServer()
  56. end
  57. end
  58. end)
  59. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement