How come im unable to calculate a players distance from a player they killed?
Asked by
3 years ago Edited 3 years ago
I'm trying to calculate a player's distance from a player they killed but it won't work, and when I check the error it only confuses me more.
Version 1
02 | local Players = game:GetService( "Players" ) |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
05 | Players.PlayerAdded:Connect( function (player) |
06 | player.CharacterAdded:Connect( function (character) |
07 | character.Humanoid.Died:Connect( function () |
08 | print ( "Player Killed" ). |
09 | local tag = character.Humanoid:FindFirstChild( "creator" ) |
11 | local Player = tag.value |
12 | local PlayerCharacter = Player.Character |
13 | local Distance = (PlayerCharacter.HumanoidRootPart.Position - character.HumanoidRootPart.Position).magnitude |
15 | Player.leaderstats.Kills.Value + = 1 |
16 | ReplicatedStorage.EXPEvent:FireServer(player.Name) |
Version 1 Error
HumanoidRootPart is not a valid member of Model "Workspace.Player2"
Version 2
02 | local Players = game:GetService( "Players" ) |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
05 | Players.PlayerAdded:Connect( function (player) |
06 | player.CharacterAdded:Connect( function (character) |
07 | character.Humanoid.Died:Connect( function () |
08 | print ( "Player Killed" ) |
09 | local tag = character.Humanoid:FindFirstChild( "creator" ) |
11 | local Killer = tag.Value |
12 | local Distance = player:DistanceFromCharacter(Killer.HumanoidRootPart.Position) |
14 | Killer.leaderstats.Kills.Value + = 1 |
15 | ReplicatedStorage.EXPEvent:FireServer(player.Name) |
WARNING
I should have said this beforehand but the entire code is inside a ServerScript that is inside of ServerScriptService