local Players = game:GetService("Players")
script.Parent.Touched:Connect(function(hit)
local character = hit.Parent
local player = Players:GetPlayerFromCharacter(hit.Parent)
if not player then return end
character:FindFirstChild("Humanoid"):UnequipTools()
local hum = character:FindFirstChild("Humanoid")
hum.WalkSpeed = 0
hum.JumpPower = 0
player.PlayerGui.GUI.Gear.Handler.Equipped.Value = nil
player.PlayerGui.GUI.Gear.Frame.Button.Equip.Text = "Equip"
end)