I know that roblox has a system with their weapons and leaderboard that when a player is killed a value is put inside the victim's humanoid and when the leaderboard finds the value (Which is an ObjectValue) it looks in that value and finds the killer's player object. You can take a closer look in Roblox's Sets in the toolbox and in their weapons. That's how I learned how to find the killer.
If that isn't enough then
2 | function TagHumanoid(Killer, Victim) |
3 | local c = Instance.new( "ObjectValue" ) |
6 | game.Debris:AddItem(c, 5 ) |
7 | c.Parent = Victim.Character.Humanoid |
Here's how I get the victim's player through a sword LOCALSCRIPT:
1 | local Player = game.Players.LocalPlayer |
3 | Handle.Touched:connect( function (hit) |
4 | hitplr = game.Players:FindFirstChild(hit.Parent.Name) |
6 | hitplr.Character.Humanoid:TakeDamage(damage) |
7 | TagHumanoid(Player, hitplr) |
If you have a gun with a moving bullet (one like manofthelol's guns) then it should work too.
Marked as Duplicate by M39a9am3R, ImageLabel, and Perci1
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?