I'm doing some sort of theater, so I want Team 1 or, receptionists to say a word like "GiveTicket" to a player to give them a ticket tool.
Put the tool in ReplicatedStorage, then replace the "Ticket" name with the tool name.
local MyMessage = "GiveTicket" local tool = game.ReplicatedStorage.Ticket game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) if msg == MyMessage then tool:Clone().Parent = player.Backpack end end) end)
Accept the answer if it works!