Posted
an actual good one (the youtube ones are linkvertise)
Replied
Infinite yields reach script works for most games
-- Equipe the tool you want before executing
--// Range \\--
ReachRange = 60
-- // Script \\--
for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
if v:IsA("Tool") then
if ReachRange then
currentToolSize = v.Handle.Size
currentGripPos = v.GripPos
local a = Instance.new("SelectionBox")
a.Name = "SelectionBoxCreated"
a.Parent = v.Handle
a.Adornee = v.Handle
v.Handle.Massless = true
v.Handle.Size = Vector3.new(0.5,0.5,ReachRange)
v.GripPos = Vector3.new(0,0,0)
game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):UnequipTools()
else
currentToolSize = v.Handle.Size
currentGripPos = v.GripPos
local a = Instance.new("SelectionBox")
a.Name = "SelectionBoxCreated"
a.Parent = v.Handle
a.Adornee = v.Handle
v.Handle.Massless = true
v.Handle.Size = Vector3.new(0.5,0.5,5)
v.GripPos = Vector3.new(0,0,0)
game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):UnequipTools()
end
end
endCancel
Post
rework.
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post