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

the if thing.name == playerLST then are the same but isnt activating?

Asked by 6 years ago
Edited 6 years ago
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
19end
0
put the code inside a code block please Le_Teapots 913 — 6y
0
there CrimSint -3 — 6y
0
if thing.Name == v then Gey4Jesus69 2705 — 6y
0
nope CrimSint -3 — 6y
0
yep Gey4Jesus69 2705 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
01function 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
19end

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!

0
Thanks it worked i cant upvote (i dont have any reputation) but i would if i could CrimSint -3 — 6y
Ad

Answer this question