01 | function Player() |
02 | local ray = Ray.new(Root.Parent.Head.Position,(Root.Parent.Head.CFrame.LookVector).unit* 5000 ) |
03 | local hit, position = game.Workspace:FindPartOnRay(ray) |
04 | local playerList = game.Players:GetChildren() |
05 | if hit ~ = nil then |
06 | local Thing = hit.Parent |
07 | if Thing.ClassName ~ = "Accessory" then |
08 | for i, v in pairs (playerList) do |
09 | local playerLST = playerList [ i ] |
10 | print (playerLST) |
11 | print (Thing.Name) |
12 | if Thing.Name = = playerLST then |
13 | local distance = (hit.Position - Root.Parent.Head.Position).magnitude |
14 | print (distance) |
15 | end |
16 | end |
17 | end |
18 | end |
19 | end |
01 | function Player() |
02 | local ray = Ray.new(Root.Parent.Head.Position,(Root.Parent.Head.CFrame.LookVector).unit* 5000 ) |
03 | local hit, position = game.Workspace:FindPartOnRay(ray) |
04 | local playerList = game.Players:GetChildren() |
05 | if hit ~ = nil then |
06 | local Thing = hit.Parent |
07 | if Thing:IsA( "Accoutrement" ) ~ = true then |
08 | for i, v in pairs (playerList) do |
09 | local playerLST = v |
10 | print (playerLST) |
11 | print (Thing.Name) |
12 | if Thing.Name = = playerLST.Name then |
13 | local distance = (hit.Position - Root.Parent.Head.Position).magnitude |
14 | print (distance) |
15 | end |
16 | end |
17 | end |
18 | end |
19 | end |
You were trying to compare a String to an Object. The fix was simply to add a .Name after playerLST.
If this helped, make sure to upvote/accept it! Thanks!