I’m trying to make a tool equipping system with GUI buttons. Right now, the way I’m having the tool be equipped (Straight into the players hand, and not into the backpack buttons) is like this:
Tool.Parent = game.Players.LocalPlayer.Character
Tool.Parent = game.Players.LocalPlayer.Backpack
Tool.Parent = game.Players.LocalPlayer.Character
I did it this way because just Tool.Parent = game.Players.LocalPlayer.Character
on its own didn’t work. Is there any better way to do this? I think this might be what’s causing a bug in my code so that’s why I’m asking.