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

[SOLVED MYSELF] How do you make a textbox input change a label for everyone?

Asked by
Hypoxla 125
3 years ago
Edited 3 years ago

I am currently designing an airport and making the boarding gate right now. The gate GUI is in a surfaceGUI in the workplace and the gate admin is in a ScreenGUI.

I also don't know much about remote events and how they work.

Local Scrip in a button that confirms the change:

local change = game.Workspace.GateA.TV.GateAWall.Content.FlightInfo.FlightNumber.Number

function confirm()
    change.Text = script.Parent.Parent.Text
end

script.Parent.MouseButton1Click:Connect(confirm)

(I would like to change the surface GUI label for everyone but it's only working for the client.)

0
You would need to use Remote Events Leamir 3138 — 3y

Answer this question