How can I make a tool drop into game.workspace.tools instead of the workspace? Any help is appreciated, thanks!
local tool = --where ever the tool is located tool.Parent = game.workspace.tools
tool.Changed:Connect(function() local player = game.Players:GetPlayerFromCharacter(tool.Parent) if not player then tool.Parent = game.Workspace.tools end end)
Should do the trick