Advertisement
pa1nx9

Tiny bit of extra reach ( NOT MINE)

Sep 29th, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. local Reach = Instance.new("ScreenGui")
  2. local ReachButton = Instance.new("TextButton")
  3.  
  4. Reach.Name = "Reach"
  5. Reach.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  6.  
  7. ReachButton.Name = "ReachButton"
  8. ReachButton.Parent = Reach
  9. ReachButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  10. ReachButton.BackgroundTransparency = 0.30000001192093
  11. ReachButton.BorderSizePixel = 0
  12. ReachButton.Position = UDim2.new(0.891057241, 1, 0.526617789, 0)
  13. ReachButton.Size = UDim2.new(0, 200, 0, 34)
  14. ReachButton.Font = Enum.Font.SourceSans
  15. ReachButton.Text = "Sword Reach"
  16. ReachButton.TextColor3 = Color3.new(1, 1, 1)
  17. ReachButton.TextSize = 20
  18. ReachButton.Draggable = true
  19.  
  20. ReachButton.MouseButton1Click:connect(function()
  21. Players = game:GetService("Players")
  22. local plr = Players.LocalPlayer
  23.  
  24. for i,v in pairs(plr.Character:GetDescendants()) do
  25. if v:IsA("Tool") then
  26. currentToolSize = v.Handle.Size
  27. currentGripPos = v.GripPos
  28. local a = Instance.new("SelectionBox")
  29. a.Name = "SelectionBoxCreated"
  30. a.Parent = v.Handle
  31. a.Adornee = v.Handle
  32. v.Handle.Massless = true
  33. v.Handle.CanCollide = false
  34. v.Handle.Size = Vector3.new(50,50,50)
  35. v.GripPos = Vector3.new(0,0,0)
  36. plr.Character.Humanoid:UnequipTools()
  37. end
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement