So, I’m trying to create a 3D platformer and I want to allow players to jump on enemies in order to do damage . The problem is that while it does work, there are times where the player lands on the enemy and no damage is done. It seems that the script only works if the enemy is moving. Here are all scripts involved:
Summary: A local script detects when a player lands which is sent to the server to spawn a part under the player. The part has a kill brick script in it that damages anything below it.
Local script used for detecting when a player lands
local humanoid = script.Parent:FindFirstChildOfClass("Humanoid")
humanoid.StateChanged:Connect(function(oldstate, newstate)
if newstate == Enum.HumanoidStateType.Landed then
print("Player has landed")
game.ReplicatedStorage.RemoteEvent:FireServer()
end
end)
Server Script for spawning a part under the player
game.ReplicatedStorage.RemoteEvent.OnServerEvent:Connect(function(plr)
local function createBrick(cframe)
local ScriptToCopy = script:WaitForChild("ScriptToCopy"):Clone()
local brick = Instance.new("Part")
brick.Size = Vector3.new(5, 5, 5)
brick.Name = "DMGPart_" .. math.random(1, 10000)
brick.Transparency = 1
brick.CFrame = cframe
brick.Anchored = true
brick.CanCollide = false
brick.Parent = workspace
brick.CanTouch = true
ScriptToCopy.Parent = brick
ScriptToCopy.Disabled = false
print("Script Enabled")
print("Created")
return brick
end
local player = plr
local character = player.Character or player.CharacterAdded:Wait()
local rootPart = character:WaitForChild("HumanoidRootPart")
if rootPart then
local createdBrick = createBrick(rootPart.CFrame * CFrame.new(0, -5, 0))
print("Activated")
wait(0.1)
if createdBrick and createdBrick.Parent then
print("Part Destroyed")
createdBrick:Destroy()
end
end
end)
Script for damage
local debounce = false
local enemy = game.Workspace.Enemies
script.Parent.Touched:Connect(function(hit)
local humanoid = hit.Parent:FindFirstAncestor("Enemies") and hit.Parent:FindFirstChildOfClass("Humanoid")
local HRP = hit.Parent:FindFirstChild("HumanoidRootPart")
if humanoid and not debounce then
print("HRP Found")
debounce = true
humanoid:TakeDamage(50)
wait()
debounce = false
end
end)
So far I have tried to allow for the npc to move a few studs in order to be detectable by the part, changing what part must be pressed and even the size of the part. Any help would be appreciated.