I am trying to make one of those big roleplay groups and I need a Hand-to GUI so cashiers can give the customers their food.
I would at least try this but I have absolutely no idea how to even start. Be aware this is not a request I would just like some help on how to make it.
01 | local GUI = script.Parent |
02 | local button = GUI.Button |
03 | local textbox = GUI.TextBox |
04 | local remote = game.ReplicatedStorage.Remote |
05 |
06 | button.MouseButton 1 Down:Connect( function () |
07 | for i,v in pairs (game.Players:GetPlayers()) do |
08 | if v.Name = = textbox.Text then |
09 | remote:FireServer(v, rank) |
10 | end |
11 | end |
12 | end ) |
13 |
14 | -- Server |
15 | local remote = game.ReplicatedStorage.Remote |