Legend_HandlesYT

Untitled

Jul 28th, 2021
8,400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. -- MADE BY LEGEND HANDLES
  2. -- Version: 1.2
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local close = Instance.new("TextButton")
  7. local inf = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. main.Name = "main"
  15. main.Parent = ScreenGui
  16. main.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  17. main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  18. main.BorderSizePixel = 5
  19. main.Position = UDim2.new(0.245916516, 0, 0.0620155036, 0)
  20. main.Size = UDim2.new(0, 744, 0, 384)
  21. main.Active = true
  22. main.Draggable = true
  23.  
  24. close.Name = "close"
  25. close.Parent = main
  26. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  27. close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  28. close.BorderSizePixel = 4
  29. close.Position = UDim2.new(0.836038589, 0, -0.000484496355, 0)
  30. close.Size = UDim2.new(0, 121, 0, 50)
  31. close.Font = Enum.Font.PatrickHand
  32. close.Text = "CLOSE"
  33. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. close.TextScaled = true
  35. close.TextSize = 14.000
  36. close.TextWrapped = true
  37.  
  38. inf.Name = "inf"
  39. inf.Parent = ScreenGui
  40. inf.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  41. inf.BorderColor3 = Color3.fromRGB(0, 0, 0)
  42. inf.BorderSizePixel = 6
  43. inf.Position = UDim2.new(0.395014375, 0, 0.226688102, 0)
  44. inf.Size = UDim2.new(0, 432, 0, 213)
  45. inf.Font = Enum.Font.Oswald
  46. inf.Text = "INF Money (REALLY WORKS)"
  47. inf.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. inf.TextScaled = true
  49. inf.TextSize = 14.000
  50. inf.TextWrapped = true
  51. inf.MouseButton1Down:connect(function()
  52. local args = {
  53. [1] = 100000000000000000, -- Change this to however much cash you want (Be careful because if you go too high your cash will be in the negatives)
  54. [2] = workspace.Hoop
  55. }
  56.  
  57. game:GetService("ReplicatedStorage").Score:FireServer(unpack(args))
  58.  
  59.  
  60. --AutoWin Contest
  61. for i = 1, 750 do
  62. local args = {
  63. [1] = 58,
  64. [2] = workspace.ContestHoop
  65. }
  66.  
  67. game:GetService("ReplicatedStorage").Score:FireServer(unpack(args))
  68. end
  69. end)
  70.  
  71. TextLabel.Parent = ScreenGui
  72. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  73. TextLabel.BackgroundTransparency = 1.000
  74. TextLabel.Position = UDim2.new(0.320230126, 0, 0.0610932484, 0)
  75. TextLabel.Size = UDim2.new(0, 537, 0, 94)
  76. TextLabel.Font = Enum.Font.Oswald
  77. TextLabel.Text = "Made By Legend Handles GO SUB!"
  78. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  79. TextLabel.TextScaled = true
  80. TextLabel.TextSize = 14.000
  81. TextLabel.TextWrapped = true
  82.  
  83. -- Scripts:
  84.  
  85. local function IFOCEO_fake_script() -- close.LocalScript
  86. local script = Instance.new('LocalScript', close)
  87.  
  88. script.Parent.MouseButton1Click:Connect(function()
  89. script.Parent.Parent.Visible = false
  90. end)
  91. end
  92. coroutine.wrap(IFOCEO_fake_script)()
  93.  
Add Comment
Please, Sign In to add comment