Does anyone know how to make a script that removes a players items from the backpack when a part is touched?
local Players = game:GetService("Players") local Part = script.Parent Part.Touched:Connect(function(Hit) if Hit and Hit.Parent and Hit.Parent:FindFirstChildOfClass("Humanoid") and Players:GetPlayerFromCharacter(Hit.Parent) then local Player = Players:GetPlayerFromCharacter(Hit.Parent) local Backpack = Player:FindFirstChildOfClass("Backpack") for index, child in ipairs(Backpack:GetChildren()) do if child:IsA("Tool") or child:IsA("HopperBin") then child:Destroy() end end end end)
local part = script.Parent part.Touched:Connect(function(otherPart) local player = game.Players:GetPlayerFromCharacter(otherPart.Parent) if player then player.Backpack:ClearAllChildren() end end)
Closed as Not Constructive by Vulkarin, zblox164, green271, RAYAN1565, and ImageLabel
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?