local player = game.Players.LocalPlayer local character = player.Character character.HumanoidRootPart.Touched:Connect(function(hit) if hit.Parent == character then return end if hit.Anchored == false then hit.Velocity = character.HumanoidRootPart.CFrame.LookVector * 1000 end end)