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
11 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.

01function nvg(p)
02    p.CharacterAdded:connect(function(c)
03        Instance.new('SelectionBox',p.Character).Adornee=c
04    end)
05end
06 
07for _,p in next, game.Players:GetPlayers() do
08    Instance.new('SelectionBox',p.Character).Adornee=c
09    nvg(p)
10end
11game.Players.PlayerAdded:connect(function(p)  
12    nvg(p)
13end)

1 answer

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

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

Ad

Answer this question