Advertisement
Upscalefanatic3

Reach script for tools

Nov 11th, 2021
1,766
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. local x = 1
  2. local y = 10
  3. local z = 30
  4.  
  5. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  6.     if v.ClassName == "Tool" then
  7.         local reach = Instance.new("SelectionBox", v.Handle)
  8.         reach.Adornee = v.Handle
  9.         v.Handle.Size = Vector3.new(x, y, z)
  10.     end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement