retpee

Reach Hub [Sword Reach] For every sword game [Roblox Exploit Gui]

Mar 29th, 2021 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.12 KB | None | 0 0
  1. -- Instances:
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local ReachHub = Instance.new("TextLabel")
  6. local Button1 = Instance.new("TextButton")
  7. local Button2 = Instance.new("TextButton")
  8. local Button3 = Instance.new("TextButton")
  9. local Close = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = ScreenGui
  17. Main.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  18. Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  19. Main.BorderSizePixel = 3
  20. Main.Position = UDim2.new(0.635426462, 0, 0.121568628, 0)
  21. Main.Size = UDim2.new(0, 273, 0, 162)
  22. Main.Active = true
  23. Main.Draggable = true
  24.  
  25. ReachHub.Name = "Reach Hub"
  26. ReachHub.Parent = Main
  27. ReachHub.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  28. ReachHub.BorderColor3 = Color3.fromRGB(43, 43, 43)
  29. ReachHub.Position = UDim2.new(0.302241087, 0, 0.0315309912, 0)
  30. ReachHub.Size = UDim2.new(0, 106, 0, 36)
  31. ReachHub.Font = Enum.Font.ArialBold
  32. ReachHub.Text = "REACH HUB"
  33. ReachHub.TextColor3 = Color3.fromRGB(255, 221, 48)
  34. ReachHub.TextSize = 17.000
  35.  
  36. Button1.Name = "Button 1"
  37. Button1.Parent = Main
  38. Button1.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  39. Button1.BorderColor3 = Color3.fromRGB(43, 43, 43)
  40. Button1.Position = UDim2.new(0.0238095243, 0, 0.367313534, 0)
  41. Button1.Size = UDim2.new(0, 86, 0, 40)
  42. Button1.Font = Enum.Font.ArialBold
  43. Button1.Text = "Normal reach"
  44. Button1.TextColor3 = Color3.fromRGB(255, 221, 48)
  45. Button1.TextSize = 14.000
  46. Button1.MouseButton1Down:connect(function()
  47.     for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  48.         if v:isA("Tool") then
  49.             local a = Instance.new("SelectionBox",v.Handle)
  50.             a.Adornee = v.Handle
  51.             v.Handle.Size = Vector3.new(0.5,0.5,60)
  52.             v.GripPos = Vector3.new(0,0,0)
  53.             lplayer.Character.Humanoid:UnequipTools()
  54.         end
  55.     end
  56. end)
  57.  
  58. Button2.Name = "Button 2"
  59. Button2.Parent = Main
  60. Button2.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  61. Button2.BorderColor3 = Color3.fromRGB(43, 43, 43)
  62. Button2.Position = UDim2.new(0.68051368, 0, 0.368431926, 0)
  63. Button2.Size = UDim2.new(0, 86, 0, 40)
  64. Button2.Font = Enum.Font.ArialBold
  65. Button2.Text = "Long reach"
  66. Button2.TextColor3 = Color3.fromRGB(255, 221, 48)
  67. Button2.TextSize = 14.000
  68. Button2.MouseButton1Down:connect(function()
  69.     for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  70.         if v:isA("Tool") then
  71.             local a = Instance.new("SelectionBox",v.Handle)
  72.             a.Adornee = v.Handle
  73.             v.Handle.Size = Vector3.new(0.11,0.0,300)
  74.             v.GripPos = Vector3.new(0,0,0)
  75.             lplayer.Character.Humanoid:UnequipTools()
  76.         end
  77.     end
  78. end)
  79.  
  80. Button3.Name = "Button 3"
  81. Button3.Parent = Main
  82. Button3.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  83. Button3.BorderColor3 = Color3.fromRGB(43, 43, 43)
  84. Button3.Position = UDim2.new(0.306563497, 0, 0.661522925, 0)
  85. Button3.Size = UDim2.new(0, 101, 0, 39)
  86. Button3.Font = Enum.Font.ArialBold
  87. Button3.Text = "Insane reach"
  88. Button3.TextColor3 = Color3.fromRGB(255, 221, 48)
  89. Button3.TextSize = 14.00
  90. Button3.MouseButton1Down:connect(function()
  91.     for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  92.         if v:isA("Tool") then
  93.             local a = Instance.new("SelectionBox",v.Handle)
  94.             a.Adornee = v.Handle
  95.             v.Handle.Size = Vector3.new(0.11,0.0,350)
  96.             v.GripPos = Vector3.new(0,0,0)
  97.             lplayer.Character.Humanoid:UnequipTools()
  98.         end
  99.     end
  100. end)
  101.  
  102.  
  103.  
  104.  
  105.     for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  106.         if v:isA("Tool") then
  107.             local a = Instance.new("SelectionBox",v.Handle)
  108.             a.Adornee = v.Handle
  109.             v.Handle.Size = Vector3.new(0.5,0.5,60)
  110.             v.GripPos = Vector3.new(0,0,0)
  111.             lplayer.Character.Humanoid:UnequipTools()
  112.         end
  113.     end
  114.  
  115.  
  116.  
  117. Close.Name = "Close"
  118. Close.Parent = Main
  119. Close.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
  120. Close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  121. Close.BorderSizePixel = 2
  122. Close.Position = UDim2.new(0.8410182, 0, 0, 0)
  123. Close.Size = UDim2.new(0, 43, 0, 46)
  124. Close.Font = Enum.Font.ArialBold
  125. Close.Text = "X"
  126. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  127. Close.TextSize = 30.00
  128. Close.MouseButton1Down:connect(function()
  129.     Main.Visible = false   
  130. end)
Add Comment
Please, Sign In to add comment