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

Is It possible to make a ServerSide Gui?

Asked by
KenUSM 53
6 years ago

I want to make the Uno Game into Roblox using only GUIs, but one major problem I found is that the GUIs goes to PlayerGui even if you created it as a ScreenGui and it won't appear if it's not a PlayerGui. Well, the Problem with that is the Uno Game Gui Servers need to be accessed to all those who are a player in that Server. The PlayerGui Duplicates a personal Single Player version of the game, it's not Multiplayer, In which I think the Solution is a ServerSide Gui, but I don't know how to make that.

2 answers

Log in to vote
2
Answered by 6 years ago

No, it is not possible.

The reason why is, GUIs are client-based and supposed to appear for only the client. It was made that way.

There are GUIs that can be seen by everyone using BillboardGUIs but it would just be interface GUIs on parts or objects. Or you could just replicate the GUI into everyone's playerGui.

If you want to communicate between the player (or client) to the server. Use remote events. (Great for filtering enabled games!)

If this helped you, please accept my answer!

Ad
Log in to vote
0
Answered by 6 years ago
for _, players in pairs(game.Players:GetPlayers()) do
    if players:FindFirstChild("PlayerGui") then
        players.PlayerGui.ScreenGui.Enabled = true
    end
end

easiest way to modify everyone's GUI

Answer this question