i want to make it so when a tool is clicked it dissapears from the backpack like you used it (medkits stuff like that) but i am unsure how to do that, i have tried many ways but none of them seem to work please help
This script changes where the tool is (Moves it to lighting)
(YOU MAY HAVE TO EDIT AROUND THIS TO MAKE IT WORK HOW YOU WANT IT TOO)
game.Players.PlayerAdded:Connect(function(plr) --player added local tool = plr.Backpack.TOOLNAMEHERE--change TOOLNAMEHERE to the name of the tool tool.Parent = game.Lighting --move it to lighting --wait (5) --//Remove "--" if you want some sort of cooldown --tool.Parent = plr.Backpack --//same thing here end)