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

How do you make a gui that only a certian team can see?

Asked by 10 years ago

I tried counties times and failed to do so.

1 answer

Log in to vote
0
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
10 years ago

This is a local script that goes directly in the GUI! (Not the frame, but the GUI!)

while wait(0.1) do
if game.Players.LocalPlayer.TeamColor == BrickColor.new("Nougat") then --Color of the team that SHOULDNT see this
script.Parent:Destroy()
    end
end

0
Sorry! I messed up before. Shawnyg 4330 — 10y
Ad

Answer this question