local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local hitRemote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("Hit") local localPlayer = Players.LocalPlayer local targetPosition = Vector3.new(298.196, 24.147, 4369.693) local directionVector = Vector3.new(-0.401, -0.300, 0.865) task.spawn(function() while task.wait(0.3) do for _, player in ipairs(Players:GetPlayers()) do if player ~= localPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local target = player.Character.HumanoidRootPart hitRemote:FireServer(target, targetPosition, directionVector) end end end end)