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

How do i make a GUI that changes for all Players in the Server?

Asked by 6 years ago

It's a LocalScript:

script.Parent.MouseButton1Click:connect(function()
    local Player = game.Players.LocalPlayer
    local Valores = workspace.Valores

    Player.PlayerGui.Gui1.Frame:WaitForChild("cor").BackgroundColor3 = Valores.ColorValue.Value
    Player.PlayerGui.Gui1.Frame.TextLabel.Text = Valores.TextValue.Value

    Valores.ColorValue.Value = Color3.new(0, 170, 0)
    Valores.TextValue.Value = "Pista liberada!"
end)
0
That will be a bit harder than you think... Easy to explaain though, remote functions and pcall User#20388 0 — 6y
0
explain* User#20388 0 — 6y
0
Use a remote function and :FireAllClients() Nikkulaos 229 — 6y

Answer this question