Hello roblox developers,
–Introduction–
I’m making a roblox game similar to slap battles but with my own ideas.
–Problem–
The knockback system I was using was from a tutorial works, but it knockback’s the player in the wrong direction.
This doesn’t really bother me, but I always wanted it to knockback from the player’s direction so that I could make many gloves possible.
Video:
Knockback Script that I use:
local FightUtils = {}
function FightUtils:knockBack(pChar, eChar)
if pChar and eChar then
local pHrp = pChar:FindFirstChild("HumanoidRootPart")
local eHrp = eChar:FindFirstChild("HumanoidRootPart")
if pHrp and eHrp then
local force = Instance.new("BodyVelocity", eHrp)
force.MaxForce = Vector3.new(10, 10, 10) * math.huge
local dir = (eHrp.CFrame.Position - pHrp.CFrame.Position).Unit
force.Velocity = (dir * Vector3.new(0, 10, 10)).Unit * 50
game.Debris:AddItem(force, 0.25)
local rot = Instance.new("BodyAngularVelocity", eHrp)
rot.AngularVelocity = Vector3.new(1,1,1) * math.pi * 2.5
rot.MaxTorque = Vector3.new(1,1,1) * math.huge
rot.P = 10000
game.Debris:AddItem(rot, 0.25)
end
end
end
return FightUtils
Script I use to call knockback script:
local DebounceTable = {}
script.Parent:WaitForChild("Handle").Touched:Connect(function(objectThatTouchesTheHitbox)
if objectThatTouchesTheHitbox.Parent then
if objectThatTouchesTheHitbox.Parent:FindFirstChild("Humanoid") then
if DebounceTable[objectThatTouchesTheHitbox.Parent] == true then return end
DebounceTable[objectThatTouchesTheHitbox.Parent] = true
local player = script:FindFirstAncestorWhichIsA"Player" or game:GetService"Players":GetPlayerFromCharacter(script.Parent.Parent)
local PunchKB = require(game.ServerScriptService.PunchKBDefault)
PunchKB:knockBack(player.Character, objectThatTouchesTheHitbox.Parent)
player.leaderstats.Brawls.Value += 1
script.Parent.PunchSoundEffect:Play()
player.Values.KickValue.Value = 0
if player.Values.InfectedEbola.Value == true then
player.Values.InfectedEbola.Value = false
end
wait(1.3)
DebounceTable[objectThatTouchesTheHitbox.Parent] = nil
end
end
end)
local knockBackPower = 1000
local FightUtils = {}
function FightUtils:knockBack(pChar, eChar)
local pHrp = pChar and pChar:FindFirstChild("HumanoidRootPart")
local eHrp = eChar and eChar:FindFirstChild("HumanoidRootPart")
if pHrp and eHrp then
local networkOwner = eHrp:GetNetworkOwner()
eHrp:SetNetworkOwner(nil)
eHrp:ApplyImpulse(pHrp.CFrame.LookVector * knockBackPower)
task.wait(2)
eHrp:SetNetworkOwner(networkOwner)
end
end
return FightUtils
You might need to modify the knockBackPower variable.
Also, just because I have some time right now, here’s an optimized + more readable version of your knockback script:
local Players = game:GetService("Players")
local ServerScriptService = game:GetService("ServerScriptService")
local Tool = script.Parent
local Handle = Tool:WaitForChild("Handle")
local DebounceTable = {}
Handle.Touched:Connect(function(hit)
local Humanoid = hit.Parent and hit.Parent:FindFirstChildWhichIsA("Humanoid")
if not Humanoid or DebounceTable[hit.Parent] then
return
end
DebounceTable[hit.Parent] = true
script.Parent.PunchSoundEffect:Play()
local player = script:FindFirstAncestorWhichIsA("Player") or Players:GetPlayerFromCharacter(script.Parent.Parent)
local PunchKB = require(ServerScriptService.PunchKBDefault)
PunchKB:knockBack(player.Character, hit.Parent)
player.leaderstats.Brawls.Value += 1
player.Values.KickValue.Value = 0
if player.Values.InfectedEbola.Value then
player.Values.InfectedEbola.Value = false
end
task.wait(1.3)
DebounceTable[hit.Parent] = nil
end)
ApplyImpulse is a good function to use for NPC knockback, but cannot be used on the server’s side to players (it would have to be client sided to work). Though, this could be easily solved with RemoteEvents.
local knockBackPower = 50
local FightUtils = {}
function FightUtils:knockBack(pChar, eChar)
local pHrp = pChar and pChar:FindFirstChild("HumanoidRootPart")
local eHrp = eChar and eChar:FindFirstChild("HumanoidRootPart")
if pHrp and eHrp then
local networkOwner = eHrp:GetNetworkOwner()
eHrp:SetNetworkOwner(nil)
eHrp:ApplyImpulse(pHrp.CFrame.LookVector * knockBackPower)
task.wait(2)
eHrp:SetNetworkOwner(networkOwner)
end
end
return FightUtils
Change your script to this and tell me if it works:
local knockBackPower = 2000
local FightUtils = {}
function FightUtils:knockBack(pChar, eChar)
local pHrp = pChar and pChar:FindFirstChild("HumanoidRootPart")
local eHrp = eChar and eChar:FindFirstChild("HumanoidRootPart")
if pHrp and eHrp then
local networkOwner = eHrp:GetNetworkOwner()
eHrp:SetNetworkOwner(nil)
eHrp:ApplyAngularImpulse(Vector3.new(0, 90, 0))
eHrp:ApplyImpulse(pHrp.CFrame.LookVector * knockBackPower)
task.wait(2)
eHrp:SetNetworkOwner(networkOwner)
end
end
return FightUtils
And I just want to detect the player’s direction so that the opponent could take knockback from there. I feel much comfortable using my old script but the direction is the only thing that bothers me.
Wait now it makes the opponent disappear. I meant the problem is that the direction only hits the opponent from 2 directions. I want the opponent to knockback in the direction the player is facing.