Hello! I was making a cafe earlier and it wouldn't handto another player. Not sure what it could be doing but all I know is it works with Roblox made tools.
Code
local Settings = { Prefix = "/", Group = 6621061, Rank = 2, } function GetWords(Msg,Pattern) local Words = {} for w in string.gmatch(Msg, Pattern) do table.insert(Words,w) end return Words end local ChatFunctions = { ["handto"] = function(Words,Player) for _,Target in pairs(game.Players:GetPlayers()) do if string.find(string.lower(Target.Name),string.lower(Words[2])) then local Tool = Player.Character:FindFirstChildOfClass("Tool") local Human = Player.Character:FindFirstChildOfClass("Humanoid") if Tool and Human then Human:UnequipTools() wait() Tool.Parent = Target.Backpack end end wait() end end, } game.Players.PlayerAdded:Connect(function(Player) if Player:GetRankInGroup(Settings.Group) >= Settings.Rank then Player.Chatted:Connect(function(Message) if string.sub(Message,1,1) == Settings.Prefix then local Command = GetWords(string.sub(Message,2),"[%w_]+") if ChatFunctions[Command[1]] then ChatFunctions[Command[1]](Command,Player) end end end) end end)
If it is model wise, then this is the model's link. https://web.roblox.com/library/5218547493/Espresso
It was my make item script and me not using WaitForChild and RemoteEvents.