I was wondering how to make the billboard GUI show to mulitple people only?
I attempted to ask this question earlier yesterday, and I thought it was answer but.. the thing only shows to you, not to the others. The purpose of the script is for a squad system, and only your squad can see you.
01 | local players = game:GetService( 'Players' ) |
02 | local group_id = 3214011 |
05 | local gui = Instance.new( "BillboardGui" ) |
06 | gui.Size = UDim 2. new( 2 , 0 , 2 , 0 ) |
07 | gui.StudsOffset = Vector 3. new( 0 , 1 , 0 ) |
08 | gui.AlwaysOnTop = true |
09 | local label = Instance.new( "ImageLabel" ) |
11 | label.Size = UDim 2. new( 0 , 100 , 0 , 100 ) |
12 | label.Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
13 | label.Position = UDim 2. new( 0 , 0 ,- 0.5 , 0 ) |
14 | label.BackgroundTransparency = 1 |
20 | local players_allowed = { |
27 | FleetAdmiralIce = true ; |
28 | [ 'spaced name' ] = true ; |
32 | local function player_joined(player) |
33 | player.CharacterAdded:connect( function (character) |
34 | if player:IsInGroup(group_id) or players_allowed [ player.Name:lower() ] then |
35 | local gui_clone = gui:Clone() |
36 | local head = character:WaitForChild( "Head" ) |
40 | gui_clone.Parent = player:WaitForChild( "PlayerGui" ) |
44 | gui_clone.Adornee = head |
51 | players.PlayerAdded:connect( function (player) |
55 | for i,v in pairs (players:GetPlayers()) do |