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.
local GUI = script.Parent local button = GUI.Button local textbox = GUI.TextBox local remote = game.ReplicatedStorage.Remote button.MouseButton1Down:Connect(function() for i,v in pairs (game.Players:GetPlayers()) do if v.Name == textbox.Text then remote:FireServer(v, rank) end end end) -- Server local remote = game.ReplicatedStorage.Remote remote.OnServerEvent:Connect(function(p, playerToGive) if p.Rank == "Cashier" then if playerToGive ~= "" then local tool = game.ReplicatedStorage.Tool:Clone() tool.Parent = playerToGive.Backpack end end end) -- I added that extra rank if statement so exploiters cant abuse this