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

How do I make selection boxes being able to be seen through walls?

Asked by 4 years ago
game.Players.PlayerAdded:Connect(function(p)
    wait(1)
    for i, v in pairs(p.Character:GetChildren()) do
        if v:IsA("BasePart") then
        local s = Instance.new("SelectionBox", v)
        s.Adornee = v
        end
    end
end)

I made this, but have no idea where to go from here. I have seen on certain games that you can see them through walls. Is it a property?

0
Couldn't you just make the walls cancollide property false? Primrose_Studio 53 — 4y
0
he said seen through walls Fad99 286 — 4y

Answer this question