I am trying to make a billboard GUI visible to a certain player and not the whole server. How would I do that? Is it possible?
2 Likes
You’ll have to make the GUI visible through a local script, so it won’t replicate to the server.
- You can create the BillboardGui with a local script, then it will be visible only for you.
Or - You can allready create your BillboardGui, place it in the StarterGui, select the part with “Adornee”, and make it visible when your character is close to the part with a local script, by using position.Magnitude
1 Like
Try putting this in a localscript Parented to the gui:
--localscript
if game.Players.Localplayer.Name == "jonny377" then
script.Parent.Enabled = true
else
script.Parent.Enabled = false
end
1 Like
If the BillboardGui is in workspace, it won’t work as Local Scripts don’t run in workspace.
1 Like