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

I was wondering how to make the billboard GUI show to mulitple people only?

Asked by 7 years ago

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.

01local players = game:GetService('Players')
02local group_id = 3214011 -- Group id
03 
04-- Pre-made so the script doesn't have to keep doing it.
05local gui = Instance.new("BillboardGui")
06    gui.Size = UDim2.new(2,0,2,0)
07    gui.StudsOffset = Vector3.new(0,1,0)
08    gui.AlwaysOnTop = true
09local label = Instance.new("ImageLabel")
10    label.Image = "rbxassetid://819434580"
11    label.Size = UDim2.new(0,100,0,100)
12    label.Size = UDim2.new(1,0,1,0)
13    label.Position = UDim2.new(0,0,-0.5,0)
14    label.BackgroundTransparency = 1
15    label.Parent = gui
View all 57 lines...

1 answer

Log in to vote
0
Answered by
RootEntry 111
7 years ago

You could look at the wiki for GetPlayersFromTeam() function or something.

Ad

Answer this question