--[[ This script requires the knockback car to be equipped, you can use catware if you want to get the car for free http://cdn.scriptblox.com/script/Catware-or-Home-Simulator_1047 ]] local players,runService,touch = game:GetService("Players"),game:GetService("RunService") local localPlayer = players.LocalPlayer while runService.RenderStepped:Wait() do if localPlayer.Character and localPlayer.Character:FindFirstChild("KnockbackCar") then touch = localPlayer.Character.KnockbackCar:WaitForChild("car",3) for i,v in next, players:GetPlayers() do if i~=1 and v.Character and v.Character.PrimaryPart then firetouchinterest(touch,v.Character.PrimaryPart,0) firetouchinterest(touch,v.Character.PrimaryPart,1) end end end end