How to change text on a TextLabel for everyone?
When a cashier in my cafe clicks a TextButton in their GUI to submit an order, how do I make it change the text for EVERYONE? It works in a LocalScript just for the client, however, I want everybody (or, preferably just the chefs) to see the order appear on the TextLabel, so they can make it.
Currently, this LocalScript is inside StarterGui, inside a ScreenGui, inside a ScrollingFrame, inside a TextButton.
1 | player = game.Players.LocalPlayer |
3 | script.Parent.MouseButton 1 Click:connect( function () |
4 | player.PlayerGui.ScreenGui.OrderCurrent.Text = "Milkshake" |