I have created this code(shown below), it makesa BodyForce and sets it's Parent as the targets humanoid however nothing happens.
local event = game.ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("FlingHandler") event.OnServerEvent:Connect(function(Player,hit) local Force = Instance.new("BodyForce") local Look = Player.Character.HumanoidRootPart.CFrame.LookVector Force.Force = Look*8000 Force.Parent = hit.Parent.Humanoid wait(.25) Force:Destroy() end)