-- start of code below -- local StarterGui = game:GetService("StarterGui") local function notify(title, text) StarterGui:SetCore("SendNotification",{ Title = title, Text = text }) end local LocalCharacter = game:GetService("Players").LocalPlayer.Character local LocalTool = LocalCharacter:FindFirstChildWhichIsA("Tool") if LocalTool == nil then notify("could not find any tools...", "please equip the tool you want to drop") return end LocalCharacter.HumanoidRootPart.CFrame *= CFrame.new(0, 20, 0) LocalTool.Parent = workspace LocalCharacter:Destroy()