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.
player = game.Players.LocalPlayer script.Parent.MouseButton1Click:connect(function() player.PlayerGui.ScreenGui.OrderCurrent.Text = "Milkshake" end)