local Replicated_Storage = game:GetService("ReplicatedStorage") local Utility = require(Replicated_Storage.Modules.Utility) local Old; Old = hookfunction(Utility.Raycast, function(...) local Traceback = debug.traceback() local Args = {...} if Traceback:find("ClientFighter") and Traceback:find("StartShooting") and Traceback:find("Gun") and not Traceback:find("ReplicatedController") and not Traceback:find("Tracers") then if Args[4] == 999 then --Args[3] = Vector3.zero -- change this to your target position end end return Old(unpack(Args)) end)