Advertisement
BluezModZ

Clicking Legends gui roblox

Jan 14th, 2022
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.51 KB | None | 0 0
  1. --Made By BluezModZ
  2. --https://www.bluezmodz.weebly.com
  3. --Happy 2022!
  4. --Hope you don't get f*c*eD this year :D
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local on = Instance.new("TextButton")
  8. local off = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  16. Frame.Position = UDim2.new(0.444624066, 0, 0.335559279, 0)
  17. Frame.Size = UDim2.new(0, 205, 0, 243)
  18. Frame.Active = true
  19. Frame.Draggable = true
  20. on.Name = "on"
  21. on.Parent = Frame
  22. on.BackgroundColor3 = Color3.fromRGB(26, 41, 255)
  23. on.Position = UDim2.new(0.141463414, 0, 0.300411522, 0)
  24. on.Size = UDim2.new(0, 146, 0, 50)
  25. on.Font = Enum.Font.SourceSans
  26. on.Text = "Auto Tap On"
  27. on.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. on.TextSize = 14.000
  29. on.MouseButton1Down:connect(function()
  30. getgenv().click = true
  31. while wait() do
  32.     if getgenv().click == true then
  33.         game:GetService("ReplicatedStorage").Remotes.Taps:FindFirstChild("905896362"):FireServer("Normal")
  34.     end
  35. end
  36. end)
  37. off.Name = "off"
  38. off.Parent = Frame
  39. off.BackgroundColor3 = Color3.fromRGB(26, 41, 255)
  40. off.Position = UDim2.new(0.141463414, 0, 0.600823045, 0)
  41. off.Size = UDim2.new(0, 146, 0, 50)
  42. off.Font = Enum.Font.SourceSans
  43. off.Text = "Auto Tap Off"
  44. off.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. off.TextSize = 14.000
  46. off.MouseButton1Down:connect(function()
  47. getgenv().click = false
  48. while wait() do
  49.     if getgenv().click == true then
  50.         game:GetService("ReplicatedStorage").Remotes.Taps:FindFirstChild("905896362"):FireServer("Normal")
  51.     end
  52. end
  53. end)
  54. TextLabel.Parent = Frame
  55. TextLabel.BackgroundColor3 = Color3.fromRGB(26, 41, 255)
  56. TextLabel.Size = UDim2.new(0, 205, 0, 50)
  57. TextLabel.Font = Enum.Font.SourceSansSemibold
  58. TextLabel.Text = "Clicking Legends Gui - BluezModZ"
  59. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  60. TextLabel.TextSize = 14.000
  61. TextLabel_2.Parent = ScreenGui
  62. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. TextLabel_2.BackgroundTransparency = 1.000
  64. TextLabel_2.Position = UDim2.new(0.324979782, 0, -0.0267111845, 0)
  65. TextLabel_2.Size = UDim2.new(0, 474, 0, 50)
  66. TextLabel_2.Font = Enum.Font.SpecialElite
  67. TextLabel_2.Text = "https://www.bluezmodz.weebly.com"
  68. TextLabel_2.TextColor3 = Color3.fromRGB(31, 57, 141)
  69. TextLabel_2.TextSize = 25.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement