How to make an overhead text label visible if the player is in a specific groups
I’m currently making an Army-type game, and I’m trying to have a future for players that are in secret groups. I added an invisible VIP Tag, and I’m trying to make it so its goes visible if the player is in a special group. I’m not the best at scripting everyone that I tried failed. Does anyone know how to make this work?
the text label called VIP is the invisible lable witch I want to only be visible for members in specific groups
I have tried to do something like,
local VIP = script.Parent.Frame.VIP
if plr.IsInGroup(7840509) then
VIP.Visible = true
end)
Im a starter sctripter I’m not sure what to do