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

How to make this script LocalPlayer?

Asked by
Rurith 10
10 years ago

I am trying to do this:

I want this script to ONLY run if you are wearing the hat, but the SCRIPT only runs for you WHEN YOU are WEARING the hat.

function nvg(p)
    p.CharacterAdded:connect(function(c)
        Instance.new('SelectionBox',p.Character).Adornee=c
    end)
end

for _,p in next, game.Players:GetPlayers() do
    Instance.new('SelectionBox',p.Character).Adornee=c
    nvg(p)
end
game.Players.PlayerAdded:connect(function(p)   
    nvg(p)
end)

1 answer

Log in to vote
0
Answered by
c5or 8
6 years ago

You'll probably need a loop so it always checks if the player has the hat.

Ad

Answer this question