Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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

01--###----------[[SERVICES]]----------###--
02local Players = game:GetService("Players")
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04--###----------[[KILLHANDLER]]----------###--
05Players.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")
10            if tag ~= nil then
11                local Player = tag.value
12local PlayerCharacter = Player.Character
13                local Distance = (PlayerCharacter.HumanoidRootPart.Position - character.HumanoidRootPart.Position).magnitude
14                print(Distance)
15                Player.leaderstats.Kills.Value += 1
View all 21 lines...

Version 1 Error

HumanoidRootPart is not a valid member of Model "Workspace.Player2"

Version 2

01--###----------[[SERVICES]]----------###--
02local Players = game:GetService("Players")
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04--###----------[[KILLHANDLER]]----------###--
05Players.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")
10            if tag ~= nil then
11                local Killer = tag.Value
12                local Distance = player:DistanceFromCharacter(Killer.HumanoidRootPart.Position)
13                print(Distance)
14                Killer.leaderstats.Kills.Value += 1
15                ReplicatedStorage.EXPEvent:FireServer(player.Name)
16                print("Kill Added")
17            end
18        end)
19    end)
20end)

WARNING

I should have said this beforehand but the entire code is inside a ServerScript that is inside of ServerScriptService

2 answers

Log in to vote
0
Answered by
Xapelize 2658 Moderation Voter Community Moderator
3 years ago

To calculate length between parts to parts with vector, use .Magnitude! For example:

1local Distance = (Part1.Position - Part2.Position).Magnitude
2print(Distance) -- The distance between Part1 to Part2 in studs

So line 13 should be:

1local Distance = (PlayerCharacter.HumanoidRootPart.Position - character.HumanoidRootPart.Position).Magnitude

maybe the error is another issue, i dont really know how to fix it

0
I do know the error is from line 13, but when I put the ".magnitude" I still get the error from line 13(I should have said what line its from)) vincentthecat1 199 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

You can use

1player:DistanceFromCharacter(OtherPlayer)

Instead of using magnitude

0
Almost, the function requires a Vector3, not an instance. So you could do i.e OtherPlayer.Head.Position the8bitdude11 358 — 3y
0
So like this "local Distance = player:DistanceFromCharacter(Killer.HumanoidRootPart.Position)"? vincentthecat1 199 — 3y
0
Also the script is a serverscript vincentthecat1 199 — 3y

Answer this question