script.Parent.Touched:Connect(function(hit) local character = hit.Parent local human = character:FindFirstChild("Humanoid") local player = game.Players:GetPlayerFromCharacter(character) if player and human.Health > 0 then human.Sit = true end end
script.Parent.Touched:Connect(function(hit) local character = hit.Parent local human = character:FindFirstChild("Humanoid") if human and human.Health > 0 then human.Health -= damage end end