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

A BillboardGUI that only certain players can see?

Asked by
Xduel 211 Moderation Voter
10 years ago

If you can make regular GUI's that certain players can see, can you do the same with BillboardGUI's and possibly SurfaceGUI's?

3 answers

Log in to vote
0
Answered by
trogyssy 221 Moderation Voter
10 years ago

http://wiki.roblox.com/index.php?title=PlayerToHideFrom_(Property) Don't know about SurfaceGuis

Ad
Log in to vote
0
Answered by 10 years ago
while wait(0.1) do--Won't work if you don't have the 0.1
if game.Players.LocalPlayer.TeamColor==BrickColor.new("Really Red") then--Color of team you don't want to see the gui.
script.Parent:Destory()--Destory the gui so the other team can't see it.
      end
end
Log in to vote
0
Answered by
Tesouro 407 Moderation Voter
10 years ago

Yeah, just place a BillboardGui in PlayerGui of the selected players and set the Adornee property to the desired part, so only them will see it. wiki page

Answer this question